AsRowMut

Trait AsRowMut 

Source
pub trait AsRowMut: AsRowRef {
    // Required method
    fn as_row_mut(&mut self) -> RowMut<'_, Self::T, Self::Cols>;
}
Expand description

trait for types that can be converted to a row view

Required Methods§

Source

fn as_row_mut(&mut self) -> RowMut<'_, Self::T, Self::Cols>

returns a view over self

Implementors§

Source§

impl<M: AsMatMut<Rows = One>> AsRowMut for M