Trait tuple_utils::Append [] [src]

pub trait Append<T> {
    type Output;
    fn append(self, _: T) -> Self::Output;
}

Helper trait to allow Appending of tuples

Associated Types

Required Methods

Append T onto the end of the tuple returning a new tuple with the existing elements and T

Implementors