Trait RowBatchMut

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

Type that can be interpreted as a mutable batch of row vectors. Can be a single row 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> RowBatchMut<E> for &mut T
where E: Conjugate, T: RowBatchMut<E>,

Implementors§

Source§

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

Source§

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

Source§

impl<E> RowBatchMut<E> for Row<E>
where E: Conjugate,

Source§

impl<E> RowBatchMut<E> for RowMut<'_, E>
where E: Conjugate,