[]Struct polyfuse::io::Unite

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

The united I/O of a pair of Reader and Writer.

Trait Implementations

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

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

impl<R: Debug, W: Debug> Debug for Unite<R, W>[src]

impl<R, W> Reader for Unite<R, W> where
    R: Reader
[src]

impl<'__pin, R, W> Unpin for Unite<R, W> where
    __Origin<'__pin, R, W>: Unpin

impl<R, W> Writer for Unite<R, W> where
    W: Writer
[src]

Auto Trait Implementations

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

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

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

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

Blanket Implementations

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

impl<R> AsyncReadExt for R where
    R: AsyncRead + ?Sized
[src]

impl<W> AsyncWriteExt for W where
    W: AsyncWrite + ?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.