Trait AsColMut

Source
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§

Source

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

Convert to a mutable column view.

Implementations on Foreign Types§

Source§

impl<E, T> AsColMut<E> for &mut T
where E: Entity, T: AsColMut<E>,

Source§

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

Implementors§

Source§

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

Source§

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