Trait tealr::TealMultiValue[][src]

pub trait TealMultiValue {
    fn get_types(dir: Direction) -> Vec<TealType>;
}
Expand description

A collection of TealValues.

It is implemented by various tuples so they can be used

Required methods

fn get_types(dir: Direction) -> Vec<TealType>[src]

Gets the types contained in this collection. Order IS important.

Implementations on Foreign Types

impl TealMultiValue for ()[src]

impl<A> TealMultiValue for (A,) where
    A: TypeName
[src]

impl<A, B> TealMultiValue for (A, B) where
    A: TypeName,
    B: TypeName
[src]

impl<A, B, C> TealMultiValue for (A, B, C) where
    A: TypeName,
    B: TypeName,
    C: TypeName
[src]

impl<A, B, C, D> TealMultiValue for (A, B, C, D) where
    A: TypeName,
    B: TypeName,
    C: TypeName,
    D: TypeName
[src]

impl<A, B, C, D, E> TealMultiValue for (A, B, C, D, E) where
    A: TypeName,
    B: TypeName,
    C: TypeName,
    D: TypeName,
    E: TypeName
[src]

impl<A, B, C, D, E, F> TealMultiValue for (A, B, C, D, E, F) where
    A: TypeName,
    B: TypeName,
    C: TypeName,
    D: TypeName,
    E: TypeName,
    F: TypeName
[src]

impl<A, B, C, D, E, F, G> TealMultiValue for (A, B, C, D, E, F, G) where
    A: TypeName,
    B: TypeName,
    C: TypeName,
    D: TypeName,
    E: TypeName,
    F: TypeName,
    G: TypeName
[src]

impl<A, B, C, D, E, F, G, H> TealMultiValue for (A, B, C, D, E, F, G, H) where
    A: TypeName,
    B: TypeName,
    C: TypeName,
    D: TypeName,
    E: TypeName,
    F: TypeName,
    G: TypeName,
    H: TypeName
[src]

impl<A, B, C, D, E, F, G, H, I> TealMultiValue for (A, B, C, D, E, F, G, H, I) where
    A: TypeName,
    B: TypeName,
    C: TypeName,
    D: TypeName,
    E: TypeName,
    F: TypeName,
    G: TypeName,
    H: TypeName,
    I: TypeName
[src]

impl<A, B, C, D, E, F, G, H, I, J> TealMultiValue for (A, B, C, D, E, F, G, H, I, J) where
    A: TypeName,
    B: TypeName,
    C: TypeName,
    D: TypeName,
    E: TypeName,
    F: TypeName,
    G: TypeName,
    H: TypeName,
    I: TypeName,
    J: TypeName
[src]

impl<A, B, C, D, E, F, G, H, I, J, K> TealMultiValue for (A, B, C, D, E, F, G, H, I, J, K) where
    A: TypeName,
    B: TypeName,
    C: TypeName,
    D: TypeName,
    E: TypeName,
    F: TypeName,
    G: TypeName,
    H: TypeName,
    I: TypeName,
    J: TypeName,
    K: TypeName
[src]

impl<A, B, C, D, E, F, G, H, I, J, K, L> TealMultiValue for (A, B, C, D, E, F, G, H, I, J, K, L) where
    A: TypeName,
    B: TypeName,
    C: TypeName,
    D: TypeName,
    E: TypeName,
    F: TypeName,
    G: TypeName,
    H: TypeName,
    I: TypeName,
    J: TypeName,
    K: TypeName,
    L: TypeName
[src]

impl<A, B, C, D, E, F, G, H, I, J, K, L, M> TealMultiValue for (A, B, C, D, E, F, G, H, I, J, K, L, M) where
    A: TypeName,
    B: TypeName,
    C: TypeName,
    D: TypeName,
    E: TypeName,
    F: TypeName,
    G: TypeName,
    H: TypeName,
    I: TypeName,
    J: TypeName,
    K: TypeName,
    L: TypeName,
    M: TypeName
[src]

impl<A, B, C, D, E, F, G, H, I, J, K, L, M, N> TealMultiValue for (A, B, C, D, E, F, G, H, I, J, K, L, M, N) where
    A: TypeName,
    B: TypeName,
    C: TypeName,
    D: TypeName,
    E: TypeName,
    F: TypeName,
    G: TypeName,
    H: TypeName,
    I: TypeName,
    J: TypeName,
    K: TypeName,
    L: TypeName,
    M: TypeName,
    N: TypeName
[src]

impl<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O> TealMultiValue for (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O) where
    A: TypeName,
    B: TypeName,
    C: TypeName,
    D: TypeName,
    E: TypeName,
    F: TypeName,
    G: TypeName,
    H: TypeName,
    I: TypeName,
    J: TypeName,
    K: TypeName,
    L: TypeName,
    M: TypeName,
    N: TypeName,
    O: TypeName
[src]

impl<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P> TealMultiValue for (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P) where
    A: TypeName,
    B: TypeName,
    C: TypeName,
    D: TypeName,
    E: TypeName,
    F: TypeName,
    G: TypeName,
    H: TypeName,
    I: TypeName,
    J: TypeName,
    K: TypeName,
    L: TypeName,
    M: TypeName,
    N: TypeName,
    O: TypeName,
    P: TypeName
[src]

Implementors

impl<A> TealMultiValue for A where
    A: TypeName
[src]