Struct tokio_xmpp::xmlstream::PendingFeaturesSend
source · pub struct PendingFeaturesSend<Io> { /* private fields */ }
Expand description
Type state for a responder stream which has received and sent the stream header.
To continue stream setup, call send_features
.
Implementations§
source§impl<Io: AsyncBufRead + AsyncWrite + Unpin> PendingFeaturesSend<Io>
impl<Io: AsyncBufRead + AsyncWrite + Unpin> PendingFeaturesSend<Io>
sourcepub async fn send_features<T: FromXml + AsXml>(
self,
features: &StreamFeatures,
) -> Result<XmlStream<Io, T>>
pub async fn send_features<T: FromXml + AsXml>( self, features: &StreamFeatures, ) -> Result<XmlStream<Io, T>>
Send the responder’s stream features.
After the stream features have been sent, 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
.
Auto Trait Implementations§
impl<Io> Freeze for PendingFeaturesSend<Io>where
Io: Freeze,
impl<Io> !RefUnwindSafe for PendingFeaturesSend<Io>
impl<Io> Send for PendingFeaturesSend<Io>where
Io: Send,
impl<Io> Sync for PendingFeaturesSend<Io>where
Io: Sync,
impl<Io> Unpin for PendingFeaturesSend<Io>where
Io: Unpin,
impl<Io> !UnwindSafe for PendingFeaturesSend<Io>
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