Struct rw_stream_sink::RwStreamSink [−][src]
pub struct RwStreamSink<S: TryStream> { /* fields omitted */ }
Wraps a Stream
and Sink
whose items are buffers.
Implements AsyncRead
and AsyncWrite
.
Implementations
Trait Implementations
impl<S> AsyncRead for RwStreamSink<S> where
S: TryStream<Error = Error>,
<S as TryStream>::Ok: AsRef<[u8]>,
[src]
impl<S> AsyncRead for RwStreamSink<S> where
S: TryStream<Error = Error>,
<S as TryStream>::Ok: AsRef<[u8]>,
[src]impl<S> AsyncWrite for RwStreamSink<S> where
S: TryStream + Sink<<S as TryStream>::Ok, Error = Error>,
<S as TryStream>::Ok: for<'r> From<&'r [u8]>,
[src]
impl<S> AsyncWrite for RwStreamSink<S> where
S: TryStream + Sink<<S as TryStream>::Ok, Error = Error>,
<S as TryStream>::Ok: for<'r> From<&'r [u8]>,
[src]fn poll_write(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
buf: &[u8]
) -> Poll<Result<usize>>
[src]
self: Pin<&mut Self>,
cx: &mut Context<'_>,
buf: &[u8]
) -> Poll<Result<usize>>
fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>
[src]
fn poll_close(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>
[src]
pub fn poll_write_vectored(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
bufs: &[IoSlice<'_>]
) -> Poll<Result<usize, Error>>
[src]
self: Pin<&mut Self>,
cx: &mut Context<'_>,
bufs: &[IoSlice<'_>]
) -> Poll<Result<usize, Error>>
impl<'pin, S: TryStream> Unpin for RwStreamSink<S> where
__RwStreamSink<'pin, S>: Unpin,
[src]
__RwStreamSink<'pin, S>: Unpin,
impl<S: TryStream> UnsafeUnpin for RwStreamSink<S>
[src]
Auto Trait Implementations
impl<S> RefUnwindSafe for RwStreamSink<S> where
S: RefUnwindSafe,
<S as TryStream>::Ok: RefUnwindSafe,
S: RefUnwindSafe,
<S as TryStream>::Ok: RefUnwindSafe,
impl<S> Send for RwStreamSink<S> where
S: Send,
<S as TryStream>::Ok: Send,
S: Send,
<S as TryStream>::Ok: Send,
impl<S> Sync for RwStreamSink<S> where
S: Sync,
<S as TryStream>::Ok: Sync,
S: Sync,
<S as TryStream>::Ok: Sync,
impl<S> UnwindSafe for RwStreamSink<S> where
S: UnwindSafe,
<S as TryStream>::Ok: UnwindSafe,
S: UnwindSafe,
<S as TryStream>::Ok: UnwindSafe,
Blanket Implementations
impl<R> AsyncReadExt for R where
R: AsyncRead + ?Sized,
[src]
impl<R> AsyncReadExt for R where
R: AsyncRead + ?Sized,
[src]pub fn chain<R>(self, next: R) -> Chain<Self, R> where
R: AsyncRead,
[src]
R: AsyncRead,
pub fn read(&'a mut self, buf: &'a mut [u8]) -> Read<'a, Self> where
Self: Unpin,
[src]
Self: Unpin,
pub fn read_vectored(
&'a mut self,
bufs: &'a mut [IoSliceMut<'a>]
) -> ReadVectored<'a, Self> where
Self: Unpin,
[src]
&'a mut self,
bufs: &'a mut [IoSliceMut<'a>]
) -> ReadVectored<'a, Self> where
Self: Unpin,
pub fn read_exact(&'a mut self, buf: &'a mut [u8]) -> ReadExact<'a, Self> where
Self: Unpin,
[src]
Self: Unpin,
pub fn read_to_end(
&'a mut self,
buf: &'a mut Vec<u8, Global>
) -> ReadToEnd<'a, Self> where
Self: Unpin,
[src]
&'a mut self,
buf: &'a mut Vec<u8, Global>
) -> ReadToEnd<'a, Self> where
Self: Unpin,
pub fn read_to_string(
&'a mut self,
buf: &'a mut String
) -> ReadToString<'a, Self> where
Self: Unpin,
[src]
&'a mut self,
buf: &'a mut String
) -> ReadToString<'a, Self> where
Self: Unpin,
pub fn split(self) -> (ReadHalf<Self>, WriteHalf<Self>) where
Self: AsyncWrite,
[src]
Self: AsyncWrite,
pub fn take(self, limit: u64) -> Take<Self>
[src]
impl<W> AsyncWriteExt for W where
W: AsyncWrite + ?Sized,
[src]
impl<W> AsyncWriteExt for W where
W: AsyncWrite + ?Sized,
[src]pub fn flush(&mut self) -> Flush<'_, Self> where
Self: Unpin,
[src]
Self: Unpin,
pub fn close(&mut self) -> Close<'_, Self> where
Self: Unpin,
[src]
Self: Unpin,
pub fn write(&'a mut self, buf: &'a [u8]) -> Write<'a, Self> where
Self: Unpin,
[src]
Self: Unpin,
pub fn write_vectored(
&'a mut self,
bufs: &'a [IoSlice<'a>]
) -> WriteVectored<'a, Self> where
Self: Unpin,
[src]
&'a mut self,
bufs: &'a [IoSlice<'a>]
) -> WriteVectored<'a, Self> where
Self: Unpin,
pub fn write_all(&'a mut self, buf: &'a [u8]) -> WriteAll<'a, Self> where
Self: Unpin,
[src]
Self: Unpin,
pub fn into_sink<Item>(self) -> IntoSink<Self, Item> where
Item: AsRef<[u8]>,
[src]
Item: AsRef<[u8]>,