[][src]Struct uninit::read::chain::Chain

pub struct Chain<R1, R2> where
    R1: ReadIntoUninit,
    R2: ReadIntoUninit
{ /* fields omitted */ }
This is supported on crate features std and chain only.

Implementations

impl<R1, R2> Chain<R1, R2> where
    R1: ReadIntoUninit,
    R2: ReadIntoUninit
[src]

pub fn into_inner(self) -> (R1, R2)[src]

This is supported on crate features std and chain only.

pub fn get_ref(&self) -> (&R1, &R2)[src]

This is supported on crate features std and chain only.

Trait Implementations

impl<R1: Debug, R2: Debug> Debug for Chain<R1, R2> where
    R1: ReadIntoUninit,
    R2: ReadIntoUninit
[src]

impl<R1, R2> Read for Chain<R1, R2> where
    R1: ReadIntoUninit,
    R2: ReadIntoUninit
[src]

impl<R1, R2> ReadIntoUninit for Chain<R1, R2> where
    R1: ReadIntoUninit,
    R2: ReadIntoUninit
[src]

Auto Trait Implementations

impl<R1, R2> RefUnwindSafe for Chain<R1, R2> where
    R1: RefUnwindSafe,
    R2: RefUnwindSafe

impl<R1, R2> Send for Chain<R1, R2> where
    R1: Send,
    R2: Send

impl<R1, R2> Sync for Chain<R1, R2> where
    R1: Sync,
    R2: Sync

impl<R1, R2> Unpin for Chain<R1, R2> where
    R1: Unpin,
    R2: Unpin

impl<R1, R2> UnwindSafe for Chain<R1, R2> where
    R1: UnwindSafe,
    R2: 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> ReadIntoUninit for R where
    R: ReadIntoUninit + Read
[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.