Struct xmpp_parsers::bookmarks::Conference
source · pub struct Conference {
pub autojoin: Autojoin,
pub jid: BareJid,
pub name: Option<String>,
pub nick: Option<String>,
pub password: Option<String>,
}
Expand description
A conference bookmark.
Fields§
§autojoin: Autojoin
Whether a conference bookmark should be joined automatically.
jid: BareJid
The JID of the conference.
name: Option<String>
A user-defined name for this conference.
nick: Option<String>
The nick the user will use to join this conference.
password: Option<String>
The password required to join this conference.
Implementations§
source§impl Conference
impl Conference
sourcepub fn into_bookmarks2(self) -> (BareJid, Conference)
pub fn into_bookmarks2(self) -> (BareJid, Conference)
Turns a XEP-0048 Conference element into a XEP-0402 “Bookmarks2” Conference element, in a tuple with the room JID.
Trait Implementations§
source§impl Clone for Conference
impl Clone for Conference
source§fn clone(&self) -> Conference
fn clone(&self) -> Conference
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 Conference
impl Debug for Conference
source§impl From<Conference> for Element
impl From<Conference> for Element
source§fn from(elem: Conference) -> Element
fn from(elem: Conference) -> Element
Converts to this type from the input type.
source§impl FromXml for Conference
impl FromXml for Conference
§type Builder = FromEventsViaElement<Conference>
type Builder = FromEventsViaElement<Conference>
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 Conference
impl IntoXml for Conference
§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.source§impl PartialEq for Conference
impl PartialEq for Conference
source§fn eq(&self, other: &Conference) -> bool
fn eq(&self, other: &Conference) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Element> for Conference
impl TryFrom<Element> for Conference
§type Error = FromElementError
type Error = FromElementError
The type returned in the event of a conversion error.
source§fn try_from(elem: Element) -> Result<Conference, FromElementError>
fn try_from(elem: Element) -> Result<Conference, FromElementError>
Performs the conversion.
impl StructuralPartialEq for Conference
Auto Trait Implementations§
impl Freeze for Conference
impl RefUnwindSafe for Conference
impl Send for Conference
impl Sync for Conference
impl Unpin for Conference
impl UnwindSafe for Conference
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