Struct xmpp_parsers::muc::muc::Muc
source · pub struct Muc {
pub password: Option<String>,
pub history: Option<History>,
}
Expand description
Represents a room join request.
Fields§
§password: Option<String>
Password to use when the room is protected by a password.
history: Option<History>
Controls how much and how old we want to receive history on join.
Implementations§
Trait Implementations§
source§impl FromXml for Muc
impl FromXml for Muc
§type Builder = FromEventsViaElement<Muc>
type Builder = FromEventsViaElement<Muc>
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 Muc
impl IntoXml for Muc
§type EventIter = IntoEventsViaElement
type EventIter = IntoEventsViaElement
The iterator type. Read more
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.impl PresencePayload for Muc
impl StructuralPartialEq for Muc
Auto Trait Implementations§
impl Freeze for Muc
impl RefUnwindSafe for Muc
impl Send for Muc
impl Sync for Muc
impl Unpin for Muc
impl UnwindSafe for Muc
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