Trait faer_core::AsRowMut

source ·
pub trait AsRowMut<E: Entity> {
    // Required method
    fn as_row_mut(&mut self) -> RowMut<'_, E>;
}
Expand description

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

Required Methods§

source

fn as_row_mut(&mut self) -> RowMut<'_, E>

Implementors§

source§

impl<E: Entity> AsRowMut<E> for &mut Row<E>

source§

impl<E: Entity> AsRowMut<E> for &mut RowMut<'_, E>

source§

impl<E: Entity> AsRowMut<E> for Row<E>

source§

impl<E: Entity> AsRowMut<E> for RowMut<'_, E>