Struct xmpp_parsers::websocket::Open
source · 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
§type Builder = FromEventsViaElement<Open>
type Builder = FromEventsViaElement<Open>
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 Open
impl IntoXml for Open
§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 Open
impl PartialEq for Open
source§impl TryFrom<Element> for Open
impl TryFrom<Element> for Open
§type Error = FromElementError
type Error = FromElementError
The type returned in the event of a conversion error.
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