Trait stackvec::Array

source ·
pub trait Array: Sealed {
    type Item;

    const N: usize;

    fn as_ptr(&self) -> *const Self::Item;
    fn as_mut_ptr(&mut self) -> *mut Self::Item;
}

Required Associated Types

Required Associated Constants

Required Methods

Implementations on Foreign Types

Implementors