Trait fixed_array::Array

source ·
pub trait Array: Sized + IndexMut<usize>where
    Self::Output: Sized,{
    type Item;

    const SIZE: usize;
}

Required Associated Types§

Required Associated Constants§

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<Item, const SIZE: usize> Array for [Item; SIZE]

§

type Item = Item

source§

const SIZE: usize = SIZE

Implementors§