tokio_xmpp::xmlstream

Struct PendingFeaturesRecv

source
pub struct PendingFeaturesRecv<Io> { /* private fields */ }
Expand description

Type state for an initiator stream which has sent and received the stream header.

To continue stream setup, call recv_features.

Implementations§

source§

impl<Io> PendingFeaturesRecv<Io>

source

pub fn header(&self) -> StreamHeader<'_>

The stream header contents as sent by the peer.

source

pub fn take_header(&mut self) -> StreamHeader<'static>

Extract the stream header contents as sent by the peer.

source§

impl<Io: AsyncBufRead + AsyncWrite + Unpin> PendingFeaturesRecv<Io>

source

pub async fn recv_features<T: FromXml + AsXml>( self, ) -> Result<(StreamFeatures, XmlStream<Io, T>)>

Receive the responder’s stream features.

After the stream features have been received, the stream can be used for exchanging stream-level elements (stanzas or “nonzas”). The Rust type for these elements must be given as type parameter T.

source

pub fn skip_features<T: FromXml + AsXml>(self) -> XmlStream<Io, T>

Skip receiving the responder’s stream features.

The stream can be used for exchanging stream-level elements (stanzas or “nonzas”). The Rust type for these elements must be given as type parameter T.

Note: Using this on RFC 6120 compliant streams where stream features are sent after the stream header will cause a parse error down the road (because the feature stream element cannot be handled). The only place where this is useful is in XEP-0114 connections.

Auto Trait Implementations§

§

impl<Io> Freeze for PendingFeaturesRecv<Io>
where Io: Freeze,

§

impl<Io> !RefUnwindSafe for PendingFeaturesRecv<Io>

§

impl<Io> Send for PendingFeaturesRecv<Io>
where Io: Send,

§

impl<Io> Sync for PendingFeaturesRecv<Io>
where Io: Sync,

§

impl<Io> Unpin for PendingFeaturesRecv<Io>
where Io: Unpin,

§

impl<Io> !UnwindSafe for PendingFeaturesRecv<Io>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

source§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> ErasedDestructor for T
where T: 'static,

source§

impl<T> MaybeSendSync for T