All

Trait All 

Source
pub trait All {
    type Out;

    // Required method
    fn into_all(self) -> Self::Out;
}

Required Associated Types§

Required Methods§

Source

fn into_all(self) -> Self::Out

Implementations on Foreign Types§

Source§

impl<A, B> All for (A, B)

Source§

type Out = All2<A, B>

Source§

fn into_all(self) -> Self::Out

Source§

impl<A, B, C> All for (A, B, C)

Source§

type Out = All3<A, B, C>

Source§

fn into_all(self) -> Self::Out

Implementors§