Struct xmpp_parsers::stream_error::SentStreamError
source · pub struct SentStreamError(pub StreamError);
Expand description
Wrapper around StreamError
which implements std::error::Error
with an appropriate error message.
Tuple Fields§
§0: StreamError
Trait Implementations§
source§impl AsXml for SentStreamError
impl AsXml for SentStreamError
source§type ItemIter<'xso_proc_as_xml_iter_lifetime> = SentStreamErrorAsXmlIterator<'xso_proc_as_xml_iter_lifetime>
type ItemIter<'xso_proc_as_xml_iter_lifetime> = SentStreamErrorAsXmlIterator<'xso_proc_as_xml_iter_lifetime>
The iterator type. Read more
source§fn as_xml_iter(&self) -> Result<Self::ItemIter<'_>, Error>
fn as_xml_iter(&self) -> Result<Self::ItemIter<'_>, Error>
Return an iterator which emits the contents of the struct or enum as
serialisable [
Item
] items.source§impl Debug for SentStreamError
impl Debug for SentStreamError
source§impl Display for SentStreamError
impl Display for SentStreamError
source§impl Error for SentStreamError
impl Error for SentStreamError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<SentStreamError> for Element
impl From<SentStreamError> for Element
source§fn from(other: SentStreamError) -> Self
fn from(other: SentStreamError) -> Self
Converts to this type from the input type.
source§impl FromXml for SentStreamError
impl FromXml for SentStreamError
Auto Trait Implementations§
impl Freeze for SentStreamError
impl RefUnwindSafe for SentStreamError
impl Send for SentStreamError
impl Sync for SentStreamError
impl Unpin for SentStreamError
impl UnwindSafe for SentStreamError
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> 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