Trait faer::col::AsColMut

source ·
pub trait AsColMut<E: Entity>: AsColRef<E> {
    // 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: Entity, T: AsColMut<E>> AsColMut<E> for &mut T

source§

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

Implementors§

source§

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

source§

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