pub trait IntoQuadSource: Iterator + Sized {
    // Provided method
    fn into_quad_source(
        self
    ) -> Map<Self, fn(_: <Self as Iterator>::Item) -> Result<<Self as Iterator>::Item, Infallible>> { ... }
}
Expand description

An extension trait for iterators, converting them to an Infallible QuadSource.

Provided Methods§

source

fn into_quad_source( self ) -> Map<Self, fn(_: <Self as Iterator>::Item) -> Result<<Self as Iterator>::Item, Infallible>>

Convert this iterator into an Infallible QuadSource.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<I> IntoQuadSource for I
where I: Iterator, I::Item: Quad,