pub struct Item {
pub jid: BareJid,
pub name: Option<String>,
pub subscription: Subscription,
pub ask: Ask,
pub groups: Vec<Group>,
}
Expand description
Contact from the user’s contact list.
Fields§
§jid: BareJid
JID of this contact.
name: Option<String>
Name of this contact.
subscription: Subscription
Subscription status of this contact.
ask: Ask
Indicates “Pending Out” sub-states for this contact.
groups: Vec<Group>
Groups this contact is part of.
Trait Implementations§
Source§impl FromXml for Item
impl FromXml for Item
Source§type Builder = ItemFromXmlBuilder
type Builder = ItemFromXmlBuilder
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 Item
Auto Trait Implementations§
impl Freeze for Item
impl RefUnwindSafe for Item
impl Send for Item
impl Sync for Item
impl Unpin for Item
impl UnwindSafe for Item
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