Struct readwrite::ReadWriteTokio[][src]

pub struct ReadWriteTokio<R, W> { /* fields omitted */ }

Combined async reader and writer, tokio 1 version. Note that this struct is only present in readwrite if “tokio” Cargo feature is enabled.

Implementations

impl<R: AsyncRead, W: AsyncWrite> ReadWriteTokio<R, W>[src]

pub fn new(r: R, w: W) -> Self[src]

Bundle separate async reader and writer into a combined pseudo-socket

pub fn borrow(&self) -> (&R, &W)[src]

Borrow inner objects

pub fn borrow_read(&self) -> &R[src]

Borrow the reader

pub fn borrow_write(&self) -> &W[src]

Borrow the writer

pub fn borrow_mut(&mut self) -> (&mut R, &mut W)[src]

Mutably borrow inner objects

pub fn borrow_mut_read(&mut self) -> &mut R[src]

Mutably borrow the reader

pub fn borrow_mut_write(&mut self) -> &mut W[src]

Mutably borrow the writer

pub fn into_inner(self) -> (R, W)[src]

Convert ReadWrite back into individual reader and writer pair

pub fn into_reader(self) -> R[src]

Convert ReadWrite back into the reader, dropping the writer

pub fn into_writer(self) -> W[src]

Convert ReadWrite back into the writer, dropping the reader

pub fn borrow_pin(self: Pin<&mut Self>) -> (Pin<&mut R>, Pin<&mut W>)[src]

Borrow pinned reader and writer

pub fn borrow_pin_read(self: Pin<&mut Self>) -> Pin<&mut R>[src]

Borrow pinned reader

pub fn borrow_pin_write(self: Pin<&mut Self>) -> Pin<&mut W>[src]

Borrow pinned writer

Trait Implementations

impl<R: AsyncRead, W> AsyncRead for ReadWriteTokio<R, W>[src]

impl<R, W: AsyncWrite> AsyncWrite for ReadWriteTokio<R, W>[src]

impl<R: AsyncRead, W: AsyncWrite> From<(R, W)> for ReadWriteTokio<R, W>[src]

impl<'__pin, R, W> Unpin for ReadWriteTokio<R, W> where
    __Origin<'__pin, R, W>: Unpin
[src]

Auto Trait Implementations

impl<R, W> RefUnwindSafe for ReadWriteTokio<R, W> where
    R: RefUnwindSafe,
    W: RefUnwindSafe

impl<R, W> Send for ReadWriteTokio<R, W> where
    R: Send,
    W: Send

impl<R, W> Sync for ReadWriteTokio<R, W> where
    R: Sync,
    W: Sync

impl<R, W> UnwindSafe for ReadWriteTokio<R, W> where
    R: UnwindSafe,
    W: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.