pub struct ReceivedStreamError(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 ReceivedStreamError
impl AsXml for ReceivedStreamError
Source§type ItemIter<'xso_proc_as_xml_iter_lifetime> = ReceivedStreamErrorAsXmlIterator<'xso_proc_as_xml_iter_lifetime>
type ItemIter<'xso_proc_as_xml_iter_lifetime> = ReceivedStreamErrorAsXmlIterator<'xso_proc_as_xml_iter_lifetime>
The iterator type. Read more
Source§impl Debug for ReceivedStreamError
impl Debug for ReceivedStreamError
Source§impl Display for ReceivedStreamError
impl Display for ReceivedStreamError
Source§impl Error for ReceivedStreamError
impl Error for ReceivedStreamError
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<ReceivedStreamError> for Element
impl From<ReceivedStreamError> for Element
Source§fn from(other: ReceivedStreamError) -> Self
fn from(other: ReceivedStreamError) -> Self
Converts to this type from the input type.
Source§impl FromXml for ReceivedStreamError
impl FromXml for ReceivedStreamError
Source§type Builder = ReceivedStreamErrorFromXmlBuilder
type Builder = ReceivedStreamErrorFromXmlBuilder
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
Auto Trait Implementations§
impl Freeze for ReceivedStreamError
impl RefUnwindSafe for ReceivedStreamError
impl Send for ReceivedStreamError
impl Sync for ReceivedStreamError
impl Unpin for ReceivedStreamError
impl UnwindSafe for ReceivedStreamError
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