Enum xmpp_parsers::iq::IqType
source · pub enum IqType {
Get(Element),
Set(Element),
Result(Option<Element>),
Error(StanzaError),
}
Expand description
Represents one of the four possible iq types.
Variants§
Get(Element)
This is a request for accessing some data.
Set(Element)
This is a request for modifying some data.
Result(Option<Element>)
This is a result containing some data.
Error(StanzaError)
A get or set request failed.
Trait Implementations§
source§impl<'a> IntoAttributeValue for &'a IqType
impl<'a> IntoAttributeValue for &'a IqType
source§fn into_attribute_value(self) -> Option<String>
fn into_attribute_value(self) -> Option<String>
Turns this into an attribute string, or None if it shouldn’t be added.
source§impl PartialEq for IqType
impl PartialEq for IqType
impl StructuralPartialEq for IqType
Auto Trait Implementations§
impl RefUnwindSafe for IqType
impl Send for IqType
impl Sync for IqType
impl Unpin for IqType
impl UnwindSafe for IqType
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