Struct xmpp_parsers::mix::Participant
source · pub struct Participant {
pub nick: String,
pub jid: String,
}
Expand description
Represents a participant in a MIX channel, usually returned on the urn:xmpp:mix:nodes:participants PubSub node.
Fields§
§nick: String
The nick of this participant.
jid: String
The bare JID of this participant.
Implementations§
source§impl Participant
impl Participant
Trait Implementations§
source§impl Clone for Participant
impl Clone for Participant
source§fn clone(&self) -> Participant
fn clone(&self) -> Participant
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 Participant
impl Debug for Participant
source§impl From<Participant> for Element
impl From<Participant> for Element
source§fn from(elem: Participant) -> Element
fn from(elem: Participant) -> Element
Converts to this type from the input type.
source§impl PartialEq for Participant
impl PartialEq for Participant
source§fn eq(&self, other: &Participant) -> bool
fn eq(&self, other: &Participant) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Element> for Participant
impl TryFrom<Element> for Participant
impl PubSubPayload for Participant
impl StructuralPartialEq for Participant
Auto Trait Implementations§
impl Freeze for Participant
impl RefUnwindSafe for Participant
impl Send for Participant
impl Sync for Participant
impl Unpin for Participant
impl UnwindSafe for Participant
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