Trait AsColMut

Source
pub trait AsColMut<E: Entity> {
    // Required method
    fn as_col_mut(&mut self) -> ColMut<'_, E>;
}
Expand description

Trait for types that can be converted to a mutable col view.

Required Methods§

Source

fn as_col_mut(&mut self) -> ColMut<'_, E>

Convert to a mutable column view.

Implementors§

Source§

impl<E: Entity> AsColMut<E> for &mut Col<E>

Source§

impl<E: Entity> AsColMut<E> for &mut ColMut<'_, E>

Source§

impl<E: Entity> AsColMut<E> for Col<E>

Source§

impl<E: Entity> AsColMut<E> for ColMut<'_, E>