pub struct AcceptedStream<Io> { /* private fields */ }
Expand description
Type state for a responder stream which has received a stream header
To continue stream setup, call send_header
.
Implementations§
source§impl<Io> AcceptedStream<Io>
impl<Io> AcceptedStream<Io>
sourcepub fn header(&self) -> StreamHeader<'_>
pub fn header(&self) -> StreamHeader<'_>
The stream header contents as sent by the peer.
sourcepub fn take_header(&mut self) -> StreamHeader<'static>
pub fn take_header(&mut self) -> StreamHeader<'static>
Extract the stream header contents as sent by the peer.
source§impl<Io: AsyncBufRead + AsyncWrite + Unpin> AcceptedStream<Io>
impl<Io: AsyncBufRead + AsyncWrite + Unpin> AcceptedStream<Io>
sourcepub async fn send_header(
self,
header: StreamHeader<'_>,
) -> Result<PendingFeaturesSend<Io>>
pub async fn send_header( self, header: StreamHeader<'_>, ) -> Result<PendingFeaturesSend<Io>>
Send a stream header.
Sends the given stream header to the initiator. Returns a new object which is prepared to send the stream features.
Auto Trait Implementations§
impl<Io> Freeze for AcceptedStream<Io>where
Io: Freeze,
impl<Io> !RefUnwindSafe for AcceptedStream<Io>
impl<Io> Send for AcceptedStream<Io>where
Io: Send,
impl<Io> Sync for AcceptedStream<Io>where
Io: Sync,
impl<Io> Unpin for AcceptedStream<Io>where
Io: Unpin,
impl<Io> !UnwindSafe for AcceptedStream<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