Trait Concat
unsafe trait Concat<T, M>: GenericSequence<T>
where
M: ArrayLength<T>
Defines GenericSequences which can be joined together, forming a larger array.
Associated Types
type Rest: TraitBound { trait_: Path { path: "GenericSequence", id: Id(13), args: Some(AngleBracketed { args: [Type(Generic("T"))], constraints: [AssocItemConstraint { name: "Length", args: None, binding: Equality(Type(Generic("M"))) }] }) }, generic_params: [], modifier: None }Sequence to be concatenated with
selftype Output: TraitBound { trait_: Path { path: "GenericSequence", id: Id(13), args: Some(AngleBracketed { args: [Type(Generic("T"))], constraints: [] }) }, generic_params: [], modifier: None }Resulting sequence formed by the concatenation.
Required Methods
fn concat(self: Self, rest: <Self as >::Rest) -> <Self as >::OutputConcatenate, or join, two sequences.
Implementors
impl<T, N, M> Concat for GenericArray<T, N>