Struct xmpp_parsers::occupant_id::OccupantId
source · pub struct OccupantId {
pub id: String,
}
Expand description
Unique identifier given to a MUC participant.
It allows clients to identify a MUC participant across reconnects and renames. It thus prevents impersonification of anonymous users.
Fields§
§id: String
The id associated to the sending user by the MUC service.
Trait Implementations§
source§impl Clone for OccupantId
impl Clone for OccupantId
source§fn clone(&self) -> OccupantId
fn clone(&self) -> OccupantId
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for OccupantId
impl Debug for OccupantId
source§impl From<OccupantId> for Element
impl From<OccupantId> for Element
source§fn from(elem: OccupantId) -> Element
fn from(elem: OccupantId) -> Element
Converts to this type from the input type.
source§impl FromXml for OccupantId
impl FromXml for OccupantId
§type Builder = FromEventsViaElement<OccupantId>
type Builder = FromEventsViaElement<OccupantId>
A builder type used to construct the element. Read more
source§fn from_events(
qname: QName,
attrs: AttrMap,
) -> Result<Self::Builder, FromEventsError>
fn from_events( qname: QName, attrs: AttrMap, ) -> Result<Self::Builder, FromEventsError>
Attempt to initiate the streamed construction of this struct from XML. Read more
source§impl IntoXml for OccupantId
impl IntoXml for OccupantId
§type EventIter = IntoEventsViaElement
type EventIter = IntoEventsViaElement
The iterator type. Read more
source§fn into_event_iter(self) -> Result<Self::EventIter, Error>
fn into_event_iter(self) -> Result<Self::EventIter, Error>
Return an iterator which emits the contents of the struct or enum as
serialisable
rxml::Event
items.source§impl PartialEq for OccupantId
impl PartialEq for OccupantId
source§fn eq(&self, other: &OccupantId) -> bool
fn eq(&self, other: &OccupantId) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Element> for OccupantId
impl TryFrom<Element> for OccupantId
impl MessagePayload for OccupantId
impl PresencePayload for OccupantId
impl StructuralPartialEq for OccupantId
Auto Trait Implementations§
impl Freeze for OccupantId
impl RefUnwindSafe for OccupantId
impl Send for OccupantId
impl Sync for OccupantId
impl Unpin for OccupantId
impl UnwindSafe for OccupantId
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