read_write_ext_tokio

Struct AsyncReadWriteTake

Source
pub struct AsyncReadWriteTake<RW: AsyncRead + AsyncWrite> { /* private fields */ }
Expand description

Wraps a tokio::io::AsyncRead + tokio::io::AsyncWrite struct. Passes through reads and writes to the struct. Limits the number of bytes that can be read.

This is like tokio::io::Take that also passes through writes.

Implementations§

Source§

impl<RW: AsyncRead + AsyncWrite + Unpin> AsyncReadWriteTake<RW>

Source

pub fn new(read_writer: RW, len: u64) -> AsyncReadWriteTake<RW>

Trait Implementations§

Source§

impl<RW: AsyncRead + AsyncWrite + Unpin> AsyncRead for AsyncReadWriteTake<RW>

Source§

fn poll_read( self: Pin<&mut Self>, cx: &mut Context<'_>, buf: &mut ReadBuf<'_>, ) -> Poll<Result<(), Error>>

Attempts to read from the AsyncRead into buf. Read more
Source§

impl<RW: AsyncRead + AsyncWrite + Unpin> AsyncWrite for AsyncReadWriteTake<RW>

Source§

fn poll_write( self: Pin<&mut Self>, cx: &mut Context<'_>, buf: &[u8], ) -> Poll<Result<usize, Error>>

Attempt to write bytes from buf into the object. Read more
Source§

fn poll_flush( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Result<(), Error>>

Attempts to flush the object, ensuring that any buffered data reach their destination. Read more
Source§

fn poll_shutdown( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Result<(), Error>>

Initiates or attempts to shut down this writer, returning success when the I/O connection has completely shut down. Read more
Source§

fn poll_write_vectored( self: Pin<&mut Self>, cx: &mut Context<'_>, bufs: &[IoSlice<'_>], ) -> Poll<Result<usize, Error>>

Like poll_write, except that it writes from a slice of buffers. Read more
Source§

fn is_write_vectored(&self) -> bool

Determines if this writer has an efficient poll_write_vectored implementation. Read more

Auto Trait Implementations§

§

impl<RW> Freeze for AsyncReadWriteTake<RW>
where RW: Freeze,

§

impl<RW> RefUnwindSafe for AsyncReadWriteTake<RW>
where RW: RefUnwindSafe,

§

impl<RW> Send for AsyncReadWriteTake<RW>
where RW: Send,

§

impl<RW> Sync for AsyncReadWriteTake<RW>
where RW: Sync,

§

impl<RW> Unpin for AsyncReadWriteTake<RW>
where RW: Unpin,

§

impl<RW> UnwindSafe for AsyncReadWriteTake<RW>
where RW: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<RW> AsyncReadWriteExt for RW
where RW: AsyncRead + AsyncWrite + Unpin + ?Sized,

Source§

fn chain_after<R: AsyncRead>( &mut self, reader: R, ) -> AsyncReadWriteChain<R, &mut Self>

Returns a struct that implements tokio::io::AsyncRead and tokio::io::AsyncWrite. Read more
Source§

fn take_rw(&mut self, len: u64) -> AsyncReadWriteTake<&mut Self>

Wraps a struct that implements tokio::io::AsyncRead and tokio::io::AsyncWrite. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.