Concat

Trait Concat 

Source
pub trait Concat<Rhs = Self> {
    type Output;

    // Required method
    fn concat(&self, other: Rhs) -> Self::Output;
}
Expand description

this trait defines a common method for concatenating two entities into some new type.

Required Associated Types§

Required Methods§

Source

fn concat(&self, other: Rhs) -> Self::Output

Concatenate two slices into a new vector.

Implementors§