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 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