pub unsafe trait Concat<T, M: ArrayLength>: GenericSequence<T> {
type Rest: GenericSequence<T, Length = M>;
type Output: GenericSequence<T>;
// Required method
fn concat(self, rest: Self::Rest) -> Self::Output;
}Expand description
Source
Concatenate, or join, two sequences.
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.