Trait c2_chacha::stream_cipher::generic_array::sequence::Concat [−]
pub unsafe trait Concat<T, M>: GenericSequence<T> where
M: ArrayLength<T>, {
type Rest: GenericSequence<T>;
type Output: GenericSequence<T>;
fn concat(self, rest: Self::Rest) -> Self::Output;
}Expand description
Defines GenericSequences which can be joined together, forming a larger array.
Associated Types
type Rest: GenericSequence<T>
type Rest: GenericSequence<T>
Sequence to be concatenated with self
type Output: GenericSequence<T>
type Output: GenericSequence<T>
Resulting sequence formed by the concatenation.