Trait 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>

Convert to a mutable row view.

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>