Struct xmpp_parsers::disco::Identity
source · pub struct Identity {
pub category: String,
pub type_: String,
pub lang: Option<String>,
pub name: Option<String>,
}
Expand description
Structure representing an <identity xmlns='http://jabber.org/protocol/disco#info'/>
element.
Fields§
§category: String
Category of this identity.
type_: String
Type of this identity.
lang: Option<String>
Lang of the name of this identity.
name: Option<String>
Name of this identity.
Implementations§
Trait Implementations§
source§impl PartialEq for Identity
impl PartialEq for Identity
impl StructuralPartialEq for Identity
Auto Trait Implementations§
impl Freeze for Identity
impl RefUnwindSafe for Identity
impl Send for Identity
impl Sync for Identity
impl Unpin for Identity
impl UnwindSafe for Identity
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