pub trait Concat<Rhs = Self> { type Output; // Required method fn concat(&self, rhs: Rhs) -> Self::Output; }
Concat defines an interface for concatenating two entities into another
Concat
Concatenates self with rhs and returns the result.
self
rhs