Enum xmpp_parsers::presence::Show
source · pub enum Show {
Away,
Chat,
Dnd,
Xa,
}
Expand description
Specifies the availability of an entity or resource.
Variants§
Away
The entity or resource is temporarily away.
Chat
The entity or resource is actively interested in chatting.
Dnd
The entity or resource is busy (dnd = “Do Not Disturb”).
Xa
The entity or resource is away for an extended period (xa = “eXtended Away”).
Trait Implementations§
source§impl FromXmlText for Show
impl FromXmlText for Show
source§impl IntoXmlText for Show
impl IntoXmlText for Show
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 Show
impl PartialEq for Show
impl StructuralPartialEq for Show
Auto Trait Implementations§
impl Freeze for Show
impl RefUnwindSafe for Show
impl Send for Show
impl Sync for Show
impl Unpin for Show
impl UnwindSafe for Show
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