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 PartialEq for Join
impl PartialEq for Join
source§impl TryFrom<Element> for Join
impl TryFrom<Element> for Join
§type Error = FromElementError
type Error = FromElementError
The type returned in the event of a conversion error.
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)