pub struct SentStreamError(pub StreamError);
Expand description
Wrapper around StreamError
which implements core::error::Error
with an appropriate error message.
Tuple Fields§
§0: StreamError
Trait Implementations§
Source§impl AsXml for SentStreamError
impl AsXml for SentStreamError
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 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