pub struct Participant {
pub nick: String,
pub jid: BareJid,
}
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: BareJid
The bare JID of this participant.
Implementations§
Source§impl Participant
impl Participant
Trait Implementations§
Source§impl AsXml for Participant
impl AsXml for Participant
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(other: &Participant) -> Self
fn from(other: &Participant) -> Self
Converts to this type from the input type.
Source§impl From<Participant> for Element
impl From<Participant> for Element
Source§fn from(other: Participant) -> Self
fn from(other: Participant) -> Self
Converts to this type from the input type.
Source§impl FromXml for Participant
impl FromXml for Participant
Source§type Builder = ParticipantFromXmlBuilder
type Builder = ParticipantFromXmlBuilder
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
Source§impl PartialEq for Participant
impl PartialEq for Participant
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