Trait AsColMut
pub trait AsColMut<E>: AsColRef<E>where
E: Entity,{
// Required method
fn as_col_mut(&mut self) -> ColMut<'_, E>;
}
Expand description
Trait for types that can be converted to a mutable column view.
Required Methods§
fn as_col_mut(&mut self) -> ColMut<'_, E>
fn as_col_mut(&mut self) -> ColMut<'_, E>
Convert to a mutable column view.