c2_chacha::stream_cipher::generic_array::sequence

Trait 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§

Source

type Length: ArrayLength<T>

GenericArray associated length

Source

type Sequence: GenericSequence<T, Length = Self::Length> + FromIterator<T>

Concrete sequence type used in conjuction with reference implementations of GenericSequence

Required Methods§

Source

fn generate<F>(f: F) -> Self::Sequence
where F: FnMut(usize) -> T,

Initializes a new sequence instance using the given function.

If the generator function panics while initializing the sequence, any already initialized elements will be dropped.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<'a, T, S> GenericSequence<T> for &'a S
where T: 'a, S: GenericSequence<T>, &'a S: IntoIterator,

Source§

impl<'a, T, S> GenericSequence<T> for &'a mut S
where T: 'a, S: GenericSequence<T>, &'a mut S: IntoIterator,

Implementors§

Source§

impl<T, N> GenericSequence<T> for GenericArray<T, N>
where N: ArrayLength<T>, GenericArray<T, N>: IntoIterator<Item = T>,