Trait tuple_utils::Append[][src]

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

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

Implementations on Foreign Types

Implementors