pub struct H3SendStream { /* private fields */ }Trait Implementations§
Source§impl Debug for H3SendStream
impl Debug for H3SendStream
Source§impl<B: Buf> SendStream<B> for H3SendStream
impl<B: Buf> SendStream<B> for H3SendStream
Source§fn poll_ready(
&mut self,
cx: &mut Context<'_>,
) -> Poll<Result<(), StreamErrorIncoming>>
fn poll_ready( &mut self, cx: &mut Context<'_>, ) -> Poll<Result<(), StreamErrorIncoming>>
Polls if the stream can send more data.
Source§fn send_data<T: Into<WriteBuf<B>>>(
&mut self,
data: T,
) -> Result<(), StreamErrorIncoming>
fn send_data<T: Into<WriteBuf<B>>>( &mut self, data: T, ) -> Result<(), StreamErrorIncoming>
Send more data on the stream.
Source§fn poll_finish(
&mut self,
cx: &mut Context<'_>,
) -> Poll<Result<(), StreamErrorIncoming>>
fn poll_finish( &mut self, cx: &mut Context<'_>, ) -> Poll<Result<(), StreamErrorIncoming>>
Poll to finish the sending side of the stream.
Auto Trait Implementations§
impl Freeze for H3SendStream
impl !RefUnwindSafe for H3SendStream
impl Send for H3SendStream
impl Sync for H3SendStream
impl Unpin for H3SendStream
impl UnsafeUnpin for H3SendStream
impl !UnwindSafe for H3SendStream
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