pub struct InitiatingStream<Io>(/* private fields */);
Expand description
Type state for an initiator stream which has not yet sent its stream header.
To continue stream setup, call send_header
.
Implementations§
source§impl<Io: AsyncBufRead + AsyncWrite + Unpin> InitiatingStream<Io>
impl<Io: AsyncBufRead + AsyncWrite + Unpin> InitiatingStream<Io>
sourcepub async fn send_header(
self,
header: StreamHeader<'_>,
) -> Result<PendingFeaturesRecv<Io>>
pub async fn send_header( self, header: StreamHeader<'_>, ) -> Result<PendingFeaturesRecv<Io>>
Send the stream header.
Auto Trait Implementations§
impl<Io> Freeze for InitiatingStream<Io>where
Io: Freeze,
impl<Io> !RefUnwindSafe for InitiatingStream<Io>
impl<Io> Send for InitiatingStream<Io>where
Io: Send,
impl<Io> Sync for InitiatingStream<Io>where
Io: Sync,
impl<Io> Unpin for InitiatingStream<Io>where
Io: Unpin,
impl<Io> !UnwindSafe for InitiatingStream<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