Struct xmpp_parsers::stream_features::StreamFeatures
source · pub struct StreamFeatures {
pub starttls: Option<StartTls>,
pub bind: Option<Bind>,
pub sasl_mechanisms: SaslMechanisms,
}
Expand description
Wraps <stream:features/>
, usually the very first nonza of a
XMPP stream. Indicates which features are supported.
Fields§
§starttls: Option<StartTls>
StartTLS is supported, and may be mandatory.
bind: Option<Bind>
Bind is supported.
sasl_mechanisms: SaslMechanisms
List of supported SASL mechanisms
Implementations§
Trait Implementations§
source§impl AsXml for StreamFeatures
impl AsXml for StreamFeatures
source§impl Clone for StreamFeatures
impl Clone for StreamFeatures
source§fn clone(&self) -> StreamFeatures
fn clone(&self) -> StreamFeatures
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 StreamFeatures
impl Debug for StreamFeatures
source§impl Default for StreamFeatures
impl Default for StreamFeatures
source§fn default() -> StreamFeatures
fn default() -> StreamFeatures
Returns the “default value” for a type. Read more
source§impl From<StreamFeatures> for Element
impl From<StreamFeatures> for Element
source§fn from(other: StreamFeatures) -> Self
fn from(other: StreamFeatures) -> Self
Converts to this type from the input type.
source§impl FromXml for StreamFeatures
impl FromXml for StreamFeatures
§type Builder = StreamFeaturesFromXmlBuilder
type Builder = StreamFeaturesFromXmlBuilder
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
source§impl PartialEq for StreamFeatures
impl PartialEq for StreamFeatures
source§impl TryFrom<Element> for StreamFeatures
impl TryFrom<Element> for StreamFeatures
impl StructuralPartialEq for StreamFeatures
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)