Struct xmpp_parsers::mix::ParticipantId
source · pub struct ParticipantId(pub String);
Expand description
The identifier a participant receives when joining a channel.
Tuple Fields§
§0: String
Implementations§
source§impl ParticipantId
impl ParticipantId
sourcepub fn new<P: Into<String>>(participant: P) -> ParticipantId
pub fn new<P: Into<String>>(participant: P) -> ParticipantId
Create a new ParticipantId.
Trait Implementations§
source§impl Clone for ParticipantId
impl Clone for ParticipantId
source§fn clone(&self) -> ParticipantId
fn clone(&self) -> ParticipantId
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 ParticipantId
impl Debug for ParticipantId
source§impl FromStr for ParticipantId
impl FromStr for ParticipantId
source§impl Hash for ParticipantId
impl Hash for ParticipantId
source§impl IntoAttributeValue for ParticipantId
impl IntoAttributeValue for ParticipantId
source§fn into_attribute_value(self) -> Option<String>
fn into_attribute_value(self) -> Option<String>
Turns this into an attribute string, or None if it shouldn’t be added.
source§impl PartialEq for ParticipantId
impl PartialEq for ParticipantId
source§fn eq(&self, other: &ParticipantId) -> bool
fn eq(&self, other: &ParticipantId) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for ParticipantId
impl StructuralPartialEq for ParticipantId
Auto Trait Implementations§
impl Freeze for ParticipantId
impl RefUnwindSafe for ParticipantId
impl Send for ParticipantId
impl Sync for ParticipantId
impl Unpin for ParticipantId
impl UnwindSafe for ParticipantId
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