pub trait HasArrayData: HasArrayType {
    fn data(&self) -> &Self::Array;
    fn mut_data(&mut self) -> &mut Self::Array;
}
Expand description

Something that has HasArrayType, and also can return a reference to or mutate Self::Array.

Required Methods

Implementors