Trait extendr_api::prelude::modules::core::AsRowMut

pub trait AsRowMut<E>: AsRowRef<E>
where 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§

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

Convert to a mutable row view.

Implementations on Foreign Types§

§

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

§

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

Implementors§

§

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

§

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