Trait ndarray::Data

source ·
pub unsafe trait Data: RawData { }
Expand description

Array representation trait.

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

Internal trait, see RawData.

Implementors§

source§

impl<'a, A> Data for CowRepr<'a, A>

source§

impl<'a, A> Data for ViewRepr<&'a A>

source§

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

source§

impl<A> Data for OwnedArcRepr<A>

source§

impl<A> Data for OwnedRepr<A>