pub struct StreamFeatures {
pub starttls: Option<StartTls>,
pub bind: Option<BindFeature>,
pub sasl_mechanisms: SaslMechanisms,
pub limits: Option<Limits>,
pub sasl2: Option<Authentication>,
pub sasl_cb: Option<SaslChannelBinding>,
pub stream_management: Option<StreamManagement>,
pub others: Vec<Element>,
}
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<BindFeature>
Bind is supported.
sasl_mechanisms: SaslMechanisms
List of supported SASL mechanisms
limits: Option<Limits>
Limits advertised by the server.
sasl2: Option<Authentication>
Extensible SASL Profile, a newer authentication method than the one from the RFC.
sasl_cb: Option<SaslChannelBinding>
SASL Channel-Binding Type Capability.
stream_management: Option<StreamManagement>
Stream management feature
others: Vec<Element>
Other stream features advertised
If some features you use end up here, you may want to contribute a typed equivalent to the xmpp-parsers project!
Implementations§
Trait Implementations§
Source§impl AsXml for StreamFeatures
impl AsXml for StreamFeatures
Source§type ItemIter<'xso_proc_as_xml_iter_lifetime> = StreamFeaturesAsXmlIterator<'xso_proc_as_xml_iter_lifetime>
type ItemIter<'xso_proc_as_xml_iter_lifetime> = StreamFeaturesAsXmlIterator<'xso_proc_as_xml_iter_lifetime>
The iterator type. Read more
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 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
Source§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