Struct tokio::io::ReadHalf [−][src]
pub struct ReadHalf<T> { /* fields omitted */ }
The readable half of a value returned from split
.
Implementations
impl<T> ReadHalf<T>
[src]
impl<T> ReadHalf<T>
[src]pub fn is_pair_of(&self, other: &WriteHalf<T>) -> bool
[src]
Checks if this ReadHalf
and some WriteHalf
were split from the same
stream.
pub fn unsplit(self, wr: WriteHalf<T>) -> T
[src]
Reunites with a previously split WriteHalf
.
Panics
If this ReadHalf
and the given WriteHalf
do not originate from the
same split
operation this method will panic.
This can be checked ahead of time by comparing the stream ID
of the two halves.
Trait Implementations
impl<T: AsyncRead> AsyncRead for ReadHalf<T>
[src]
impl<T: AsyncRead> AsyncRead for ReadHalf<T>
[src]fn poll_read(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
buf: &mut [u8]
) -> Poll<Result<usize>>
[src]
self: Pin<&mut Self>,
cx: &mut Context<'_>,
buf: &mut [u8]
) -> Poll<Result<usize>>
fn poll_read_buf<B: BufMut>(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
buf: &mut B
) -> Poll<Result<usize>>
[src]
self: Pin<&mut Self>,
cx: &mut Context<'_>,
buf: &mut B
) -> Poll<Result<usize>>
unsafe fn prepare_uninitialized_buffer(
&self,
buf: &mut [MaybeUninit<u8>]
) -> bool
[src]
&self,
buf: &mut [MaybeUninit<u8>]
) -> bool