pub trait ArrayStorage {
type T;
// Required methods
fn insert(&mut self, index: usize, value: Self::T);
fn remove(&mut self, index: usize) -> Self::T;
fn clear(&mut self);
}Expand description
Backing storage for Array256.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".