Trait tuple_utils::Append

source ·
pub trait Append<T> {
    type Output;

    fn append(self, _: T) -> Self::Output;
}
Expand description

Helper trait to allow Appending of tuples

Required 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