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§
Sourcefn as_row_mut(&mut self) -> RowMut<'_, E>
fn as_row_mut(&mut self) -> RowMut<'_, E>
Convert to a mutable row view.