Concat

Trait Concat 

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

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

Concat defines an interface for concatenating two entities into another

Required Associated Types§

Required Methods§

Source

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

Concatenates self with rhs and returns the result.

Implementors§