Enum xmpp_parsers::presence::Type
source · pub enum Type {
Error,
Probe,
Subscribe,
Subscribed,
Unavailable,
Unsubscribe,
Unsubscribed,
}
Expand description
Variants§
Error
An error has occurred regarding processing of a previously sent presence stanza; if the presence stanza is of type “error”, it MUST include an <error/> child element (refer to XMPP‑CORE).
Probe
A request for an entity’s current presence; SHOULD be generated only by a server on behalf of a user.
Subscribe
The sender wishes to subscribe to the recipient’s presence.
Subscribed
The sender has allowed the recipient to receive their presence.
The sender is no longer available for communication.
Unsubscribe
The sender is unsubscribing from the receiver’s presence.
Unsubscribed
The subscription request has been denied or a previously granted subscription has been canceled.
Trait Implementations§
source§impl FromXmlText for Type
impl FromXmlText for Type
source§impl IntoXmlText for Type
impl IntoXmlText for Type
source§fn into_xml_text(self) -> String
fn into_xml_text(self) -> String
Consume the value and return it as XML string.
source§impl PartialEq for Type
impl PartialEq for Type
impl StructuralPartialEq for Type
Auto Trait Implementations§
impl Freeze for Type
impl RefUnwindSafe for Type
impl Send for Type
impl Sync for Type
impl Unpin for Type
impl UnwindSafe for Type
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