Enum async_proto::impls::Tuple9ReadError[][src]

pub enum Tuple9ReadError<A: Protocol, B: Protocol, C: Protocol, D: Protocol, E: Protocol, F: Protocol, G: Protocol, H: Protocol, I: Protocol> {
    A(A::ReadError),
    B(B::ReadError),
    C(C::ReadError),
    D(D::ReadError),
    E(E::ReadError),
    F(F::ReadError),
    G(G::ReadError),
    H(H::ReadError),
    I(I::ReadError),
}

Variants

A(A::ReadError)
B(B::ReadError)
C(C::ReadError)
D(D::ReadError)
E(E::ReadError)
F(F::ReadError)
G(G::ReadError)
H(H::ReadError)
I(I::ReadError)

Trait Implementations

impl<A: Debug + Protocol, B: Debug + Protocol, C: Debug + Protocol, D: Debug + Protocol, E: Debug + Protocol, F: Debug + Protocol, G: Debug + Protocol, H: Debug + Protocol, I: Debug + Protocol> Debug for Tuple9ReadError<A, B, C, D, E, F, G, H, I> where
    A::ReadError: Debug,
    B::ReadError: Debug,
    C::ReadError: Debug,
    D::ReadError: Debug,
    E::ReadError: Debug,
    F::ReadError: Debug,
    G::ReadError: Debug,
    H::ReadError: Debug,
    I::ReadError: Debug
[src]

impl<A: Protocol, B: Protocol, C: Protocol, D: Protocol, E: Protocol, F: Protocol, G: Protocol, H: Protocol, I: Protocol> Display for Tuple9ReadError<A, B, C, D, E, F, G, H, I> where
    A::ReadError: Display,
    B::ReadError: Display,
    C::ReadError: Display,
    D::ReadError: Display,
    E::ReadError: Display,
    F::ReadError: Display,
    G::ReadError: Display,
    H::ReadError: Display,
    I::ReadError: Display
[src]

Auto Trait Implementations

impl<A, B, C, D, E, F, G, H, I> RefUnwindSafe for Tuple9ReadError<A, B, C, D, E, F, G, H, I> where
    <A as Protocol>::ReadError: RefUnwindSafe,
    <B as Protocol>::ReadError: RefUnwindSafe,
    <C as Protocol>::ReadError: RefUnwindSafe,
    <D as Protocol>::ReadError: RefUnwindSafe,
    <E as Protocol>::ReadError: RefUnwindSafe,
    <F as Protocol>::ReadError: RefUnwindSafe,
    <G as Protocol>::ReadError: RefUnwindSafe,
    <H as Protocol>::ReadError: RefUnwindSafe,
    <I as Protocol>::ReadError: RefUnwindSafe

impl<A, B, C, D, E, F, G, H, I> Send for Tuple9ReadError<A, B, C, D, E, F, G, H, I> where
    <A as Protocol>::ReadError: Send,
    <B as Protocol>::ReadError: Send,
    <C as Protocol>::ReadError: Send,
    <D as Protocol>::ReadError: Send,
    <E as Protocol>::ReadError: Send,
    <F as Protocol>::ReadError: Send,
    <G as Protocol>::ReadError: Send,
    <H as Protocol>::ReadError: Send,
    <I as Protocol>::ReadError: Send

impl<A, B, C, D, E, F, G, H, I> Sync for Tuple9ReadError<A, B, C, D, E, F, G, H, I> where
    <A as Protocol>::ReadError: Sync,
    <B as Protocol>::ReadError: Sync,
    <C as Protocol>::ReadError: Sync,
    <D as Protocol>::ReadError: Sync,
    <E as Protocol>::ReadError: Sync,
    <F as Protocol>::ReadError: Sync,
    <G as Protocol>::ReadError: Sync,
    <H as Protocol>::ReadError: Sync,
    <I as Protocol>::ReadError: Sync

impl<A, B, C, D, E, F, G, H, I> Unpin for Tuple9ReadError<A, B, C, D, E, F, G, H, I> where
    <A as Protocol>::ReadError: Unpin,
    <B as Protocol>::ReadError: Unpin,
    <C as Protocol>::ReadError: Unpin,
    <D as Protocol>::ReadError: Unpin,
    <E as Protocol>::ReadError: Unpin,
    <F as Protocol>::ReadError: Unpin,
    <G as Protocol>::ReadError: Unpin,
    <H as Protocol>::ReadError: Unpin,
    <I as Protocol>::ReadError: Unpin

impl<A, B, C, D, E, F, G, H, I> UnwindSafe for Tuple9ReadError<A, B, C, D, E, F, G, H, I> where
    <A as Protocol>::ReadError: UnwindSafe,
    <B as Protocol>::ReadError: UnwindSafe,
    <C as Protocol>::ReadError: UnwindSafe,
    <D as Protocol>::ReadError: UnwindSafe,
    <E as Protocol>::ReadError: UnwindSafe,
    <F as Protocol>::ReadError: UnwindSafe,
    <G as Protocol>::ReadError: UnwindSafe,
    <H as Protocol>::ReadError: UnwindSafe,
    <I as Protocol>::ReadError: 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> ToString for T where
    T: Display + ?Sized
[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.