Trait generic_array::sequence::GenericSequence  
source · pub unsafe trait GenericSequence<T>: Sized + IntoIterator {
    type Length: ArrayLength<T>;
    type Sequence: GenericSequence<T, Length = Self::Length> + FromIterator<T>;
    // Required method
    fn generate<F>(f: F) -> Self::Sequence
       where F: FnMut(usize) -> T;
}Expand description
Defines some sequence with an associated length and iteration capabilities.
This is useful for passing N-length generic arrays as generics.
Required Associated Types§
sourcetype Length: ArrayLength<T>
 
type Length: ArrayLength<T>
GenericArray associated length
sourcetype Sequence: GenericSequence<T, Length = Self::Length> + FromIterator<T>
 
type Sequence: GenericSequence<T, Length = Self::Length> + FromIterator<T>
Concrete sequence type used in conjuction with reference implementations of GenericSequence
Required Methods§
Object Safety§
This trait is not object safe.