Trait ColBatchMut

Source
pub trait ColBatchMut<E>: As2DMut<E> + ColBatch<E>
where E: Conjugate,
{ }
Expand description

Type that can be interpreted as a mutable batch of column vectors. Can be a single column or a matrix.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<E, T> ColBatchMut<E> for &mut T
where E: Conjugate, T: ColBatchMut<E>,

Implementors§

Source§

impl<E> ColBatchMut<E> for Col<E>
where E: Conjugate,

Source§

impl<E> ColBatchMut<E> for ColMut<'_, E>
where E: Conjugate,

Source§

impl<E> ColBatchMut<E> for Mat<E>
where E: Conjugate,

Source§

impl<E> ColBatchMut<E> for MatMut<'_, E>
where E: Conjugate,