Trait array_init::IsArray [] [src]

pub unsafe trait IsArray {
    type Item;
    fn set(&mut self, idx: usize, value: Self::Item);
fn len() -> usize; }

Trait for things which are actually arrays

Probably shouldn't implement this yourself, but you can

Associated Types

Required Methods

Must assume self is uninitialized.

Implementors