Trait iter_columns::prelude::ColExtIntoIterVec[][src]

pub trait ColExtIntoIterVec<T>: Iterator<Item = Vec<T>> {
    fn columns(self) -> ColumnsIntoIterVec<T>
    where
        Self: Sized
, { ... }
fn columns_options(self) -> ColumnsOptionsIntoIterVec<T>
    where
        Self: Sized
, { ... } }

Provided methods

fn columns(self) -> ColumnsIntoIterVec<T> where
    Self: Sized
[src]

fn columns_options(self) -> ColumnsOptionsIntoIterVec<T> where
    Self: Sized
[src]

Implementors

impl<T, I: Iterator<Item = Vec<T>>> ColExtIntoIterVec<T> for I[src]