Struct xmpp_parsers::mix::Join
source · pub struct Join {
pub id: Option<ParticipantId>,
pub nick: String,
pub subscribes: Vec<Subscribe>,
}
Expand description
A request from a user’s server to join a MIX channel.
Fields§
§id: Option<ParticipantId>
The participant identifier returned by the MIX service on successful join.
nick: String
The nick requested by the user or set by the service.
subscribes: Vec<Subscribe>
Which MIX nodes to subscribe to.
Implementations§
Trait Implementations§
source§impl FromXml for Join
impl FromXml for Join
§type Builder = FromEventsViaElement<Join>
type Builder = FromEventsViaElement<Join>
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 Join
impl IntoXml for Join
§type EventIter = IntoEventsViaElement
type EventIter = IntoEventsViaElement
The iterator type.
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 Join
impl PartialEq for Join
impl IqResultPayload for Join
impl IqSetPayload for Join
impl StructuralPartialEq for Join
Auto Trait Implementations§
impl Freeze for Join
impl RefUnwindSafe for Join
impl Send for Join
impl Sync for Join
impl Unpin for Join
impl UnwindSafe for Join
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