Struct xmpp_parsers::stream_error::StreamError
source · pub struct StreamError {
pub condition: DefinedCondition,
pub text: Option<(Option<String>, String)>,
pub application_specific: Vec<Element>,
}
Expand description
Stream error as specified in RFC 6120.
Fields§
§condition: DefinedCondition
The enumerated error condition which triggered this stream error.
text: Option<(Option<String>, String)>
Optional error text. The first part is the optional xml:lang
language tag, the second part is the actual text content.
application_specific: Vec<Element>
Optional application-defined element which refines the specified
Self::condition
.
Trait Implementations§
source§impl AsXml for StreamError
impl AsXml for StreamError
source§impl Clone for StreamError
impl Clone for StreamError
source§fn clone(&self) -> StreamError
fn clone(&self) -> StreamError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for StreamError
impl Debug for StreamError
source§impl Display for StreamError
impl Display for StreamError
source§impl From<HandledCountTooHigh> for StreamError
impl From<HandledCountTooHigh> for StreamError
source§fn from(other: HandledCountTooHigh) -> Self
fn from(other: HandledCountTooHigh) -> Self
Converts to this type from the input type.
source§impl From<StreamError> for Element
impl From<StreamError> for Element
source§fn from(other: StreamError) -> Self
fn from(other: StreamError) -> Self
Converts to this type from the input type.
source§impl FromXml for StreamError
impl FromXml for StreamError
source§type Builder = StreamErrorFromXmlBuilder
type Builder = StreamErrorFromXmlBuilder
A builder type used to construct the element. Read more
source§fn from_events(
name: QName,
attrs: AttrMap,
) -> Result<Self::Builder, FromEventsError>
fn from_events( name: QName, attrs: AttrMap, ) -> Result<Self::Builder, FromEventsError>
Attempt to initiate the streamed construction of this struct from XML. Read more
source§impl PartialEq for StreamError
impl PartialEq for StreamError
source§impl TryFrom<Element> for StreamError
impl TryFrom<Element> for StreamError
impl StructuralPartialEq for StreamError
Auto Trait Implementations§
impl Freeze for StreamError
impl RefUnwindSafe for StreamError
impl Send for StreamError
impl Sync for StreamError
impl Unpin for StreamError
impl UnwindSafe for StreamError
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
source§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString
. Read more