Skip to main content

IntoRowIterator

Trait 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

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl IntoRowIterator for Vec<Row>

Source§

type Iter = VecRowIter

Source§

fn into_row_iter(self) -> Self::Iter

Implementors§

Source§

impl IntoRowIterator for Row

Source§

type Iter = SingleRowIter

Source§

impl<T: RowIterator> IntoRowIterator for T

Source§

type Iter = T