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 PartialEq for Join
impl PartialEq for Join
impl IqResultPayload for Join
impl IqSetPayload for Join
impl StructuralPartialEq for Join
Auto Trait Implementations§
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