pub trait AsColMut: AsColRef {
// Required method
fn as_col_mut(&mut self) -> ColMut<'_, Self::T, Self::Rows>;
}Expand description
trait for types that can be converted to a column view
Required Methods§
Sourcefn as_col_mut(&mut self) -> ColMut<'_, Self::T, Self::Rows>
fn as_col_mut(&mut self) -> ColMut<'_, Self::T, Self::Rows>
returns a view over self