Struct tokio_xmpp::stream_features::StreamFeatures
source · pub struct StreamFeatures(pub Element);
Expand description
Wraps <stream:features/>
, usually the very first nonza of an
XMPPStream.
TODO: should this rather go into xmpp-parsers, kept in a decoded struct?
Tuple Fields§
§0: Element
Implementations§
source§impl StreamFeatures
impl StreamFeatures
sourcepub fn can_starttls(&self) -> bool
pub fn can_starttls(&self) -> bool
Can initiate TLS session with this server?
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StreamFeatures
impl RefUnwindSafe for StreamFeatures
impl Send for StreamFeatures
impl Sync for StreamFeatures
impl Unpin for StreamFeatures
impl UnwindSafe for StreamFeatures
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