[][src]Struct readwrite::ReadWrite

pub struct ReadWrite<R: Read, W: Write>(pub R, pub W);

Combined reader and writer

Methods

impl<R: Read, W: Write> ReadWrite<R, W>[src]

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

Bundle separate 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

Trait Implementations

impl<R: Read, W: Write> From<(R, W)> for ReadWrite<R, W>[src]

impl<R: Read, W: Write> Read for ReadWrite<R, W>[src]

impl<R: Read, W: Write> Write for ReadWrite<R, W>[src]

Auto Trait Implementations

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

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

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

impl<R, W> Unpin for ReadWrite<R, W> where
    R: Unpin,
    W: Unpin

impl<R, W> UnwindSafe for ReadWrite<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<R> ReadBytesExt for R where
    R: Read + ?Sized

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.

impl<W> WriteBytesExt for W where
    W: Write + ?Sized