[][src]Trait rql::HasRowsMut

pub trait HasRowsMut: Sized {
    type Iter: Iterator;
    fn rows_mut(self) -> Self::Iter;

    fn update(self) -> Self::Iter { ... }
}

A trait for mutably accessing rows

Associated Types

type Iter: Iterator

The row iterator type

Loading content...

Required methods

fn rows_mut(self) -> Self::Iter

Get the row iterator

Loading content...

Provided methods

fn update(self) -> Self::Iter

Update the rows

Loading content...

Implementors

impl<'a, T> HasRowsMut for &'a mut Table<T>[src]

type Iter = RowIterMut<'a, T>

impl<I> HasRowsMut for I where
    I: Iterator
[src]

type Iter = I

Loading content...