pub struct Open {
pub from: Option<BareJid>,
pub to: Option<BareJid>,
pub id: Option<String>,
pub version: Option<String>,
pub xml_lang: Option<String>,
}
Expand description
The stream opening for WebSocket.
Fields§
§from: Option<BareJid>
The JID of the entity opening this stream.
to: Option<BareJid>
The JID of the entity receiving this stream opening.
id: Option<String>
The id of the stream, used for authentication challenges.
version: Option<String>
The XMPP version used during this stream.
xml_lang: Option<String>
The default human language for all subsequent stanzas, which will be transmitted to other entities for better localisation.
Implementations§
Source§impl Open
impl Open
Sourcepub fn with_from(self, from: BareJid) -> Open
pub fn with_from(self, from: BareJid) -> Open
Sets the @from attribute on this <open/>
element.
Sourcepub fn with_lang(self, xml_lang: String) -> Open
pub fn with_lang(self, xml_lang: String) -> Open
Sets the @xml:lang attribute on this <open/>
element.
Sourcepub fn is_version(&self, version: &str) -> bool
pub fn is_version(&self, version: &str) -> bool
Checks whether the version matches the expected one.
Trait Implementations§
Source§impl FromXml for Open
impl FromXml for Open
Source§type Builder = OpenFromXmlBuilder
type Builder = OpenFromXmlBuilder
A builder type used to construct the element. Read more
Source§fn from_events(
name: QName,
attrs: AttrMap,
) -> Result<Self::Builder, FromEventsError>
fn from_events( name: QName, attrs: AttrMap, ) -> Result<Self::Builder, FromEventsError>
Attempt to initiate the streamed construction of this struct from XML. Read more
impl StructuralPartialEq for Open
Auto Trait Implementations§
impl Freeze for Open
impl RefUnwindSafe for Open
impl Send for Open
impl Sync for Open
impl Unpin for Open
impl UnwindSafe for Open
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)