Trait ndarray::DataMut

source ·
pub unsafe trait DataMut: Data + RawDataMut { }
Expand description

Array representation trait.

For an array with writable elements that can be accessed with safe code.

Internal trait, see Data.

Implementors§

source§

impl<'a, A> DataMut for CowRepr<'a, A>where A: Clone,

source§

impl<'a, A> DataMut for ViewRepr<&'a mut A>

source§

impl<A> DataMut for OwnedArcRepr<A>where A: Clone,

source§

impl<A> DataMut for OwnedRepr<A>