pub struct Abort {
pub text: Option<String>,
pub payloads: Vec<Element>,
}
Expand description
Client aborts the connection.
Fields§
§text: Option<String>
Plaintext reason for aborting
payloads: Vec<Element>
Extra untyped payloads
Trait Implementations§
Source§impl FromXml for Abort
impl FromXml for Abort
Source§type Builder = AbortFromXmlBuilder
type Builder = AbortFromXmlBuilder
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
impl StructuralPartialEq for Abort
Auto Trait Implementations§
impl Freeze for Abort
impl RefUnwindSafe for Abort
impl Send for Abort
impl Sync for Abort
impl Unpin for Abort
impl UnwindSafe for Abort
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