Seq

Trait Seq 

Source
pub trait Seq {
    type Out;

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

Required Associated Types§

Required Methods§

Source

fn into_seq(self) -> Self::Out

Implementations on Foreign Types§

Source§

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

Source§

type Out = Seq2<A, B>

Source§

fn into_seq(self) -> Self::Out

Source§

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

Source§

type Out = Seq3<A, B, C>

Source§

fn into_seq(self) -> Self::Out

Implementors§