logo
pub unsafe trait FixedInitializer {
    type Elem;

    fn as_init_slice(&self) -> &[Self::Elem];
    fn len() -> usize;
}
Expand description

Fixed-size array used for array initialization

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors