Trait mz_repr::row::iter::IntoRowIterator

source ·
pub trait IntoRowIterator {
    type Iter: RowIterator;

    // Required method
    fn into_row_iter(self) -> Self::Iter;
}
Expand description

Convert a type into a RowIterator.

Required Associated Types§

Required Methods§

source

fn into_row_iter(self) -> Self::Iter

Implementations on Foreign Types§

source§

impl IntoRowIterator for Vec<Row>

Implementors§