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§
type Iter: RowIterator
Required Methods§
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".