Struct xmpp_parsers::bookmarks2::Conference
source · pub struct Conference {
pub autojoin: Autojoin,
pub name: Option<String>,
pub nick: Option<String>,
pub password: Option<String>,
pub extensions: Vec<Element>,
}
Expand description
A conference bookmark.
Fields§
§autojoin: Autojoin
Whether a conference bookmark should be joined automatically.
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.
extensions: Vec<Element>
Extensions elements.
Implementations§
source§impl Conference
impl Conference
sourcepub fn new() -> Conference
pub fn new() -> Conference
Create a new conference.
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 Default for Conference
impl Default for Conference
source§fn default() -> Conference
fn default() -> Conference
Returns the “default value” for a type. Read more
source§impl From<Conference> for Element
impl From<Conference> for Element
source§fn from(conference: Conference) -> Element
fn from(conference: Conference) -> Element
Converts to this type from the input type.
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