Struct xmpp_parsers::websocket::Open
source · pub struct Open { /* private fields */ }
Expand description
The stream opening for WebSocket.
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 PartialEq for Open
impl PartialEq for Open
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