Trait nyx_space::linalg::storage::StorageMut

source ·
pub unsafe trait StorageMut<T, R, C = Const<1>>: Storage<T, R, C> + RawStorageMut<T, R, C>
where T: Scalar, R: Dim, C: Dim,
{ }
Expand description

Trait shared by all mutable matrix data storage that don’t contain any uninitialized elements.

§Safety

See safety note for Storage, RawStorageMut.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<S, T, R, C> StorageMut<T, R, C> for S
where T: Scalar, R: Dim, C: Dim, S: Storage<T, R, C> + RawStorageMut<T, R, C>,