[][src]Trait tstr::MakeTStr

pub trait MakeTStr: Copy {
    pub const MAKE: Self;
}

For constructing TStrs or collections of them.

Associated Constants

pub const MAKE: Self[src]

Gets a value of this type

Loading content...

Implementors

impl MakeTStr for ()[src]

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

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

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

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

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

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

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

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

impl<T> MakeTStr for TStr<T>[src]

Loading content...