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 AsXml for Conference
impl AsXml for Conference
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
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
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
)