Enum variadic_closure::ClosureVariant[][src]

pub enum ClosureVariant<A, B, C, D, E, F, G, H, RET> {
    Zero(Closure0<RET>),
    One(Closure1<A, RET>),
    Two(Closure2<A, B, RET>),
    Three(Closure3<A, B, C, RET>),
    Four(Closure4<A, B, C, D, RET>),
    Five(Closure5<A, B, C, D, E, RET>),
    Six(Closure6<A, B, C, D, E, F, RET>),
    Seven(Closure7<A, B, C, D, E, F, G, RET>),
    Eight(Closure8<A, B, C, D, E, F, G, H, RET>),
}

Variants

Zero(Closure0<RET>)

Tuple Fields of Zero

0: Closure0<RET>
One(Closure1<A, RET>)

Tuple Fields of One

0: Closure1<A, RET>
Two(Closure2<A, B, RET>)

Tuple Fields of Two

0: Closure2<A, B, RET>
Three(Closure3<A, B, C, RET>)

Tuple Fields of Three

0: Closure3<A, B, C, RET>
Four(Closure4<A, B, C, D, RET>)

Tuple Fields of Four

0: Closure4<A, B, C, D, RET>
Five(Closure5<A, B, C, D, E, RET>)

Tuple Fields of Five

0: Closure5<A, B, C, D, E, RET>
Six(Closure6<A, B, C, D, E, F, RET>)

Tuple Fields of Six

0: Closure6<A, B, C, D, E, F, RET>
Seven(Closure7<A, B, C, D, E, F, G, RET>)

Tuple Fields of Seven

0: Closure7<A, B, C, D, E, F, G, RET>
Eight(Closure8<A, B, C, D, E, F, G, H, RET>)

Tuple Fields of Eight

0: Closure8<A, B, C, D, E, F, G, H, RET>

Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.