Trait extendr_api::prelude::col::ColBatchMut

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.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

§

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

Implementors§

§

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

§

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

§

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

§

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