[][src]Struct rio_api::parser::TriplesParserIterator

pub struct TriplesParserIterator<T, E: From<P::Error>, F: FnMut(Triple<'_>) -> Result<T, E>, P: TriplesParser> { /* fields omitted */ }

Created with the method into_iter.

Trait Implementations

impl<T, E: From<P::Error>, F: FnMut(Triple<'_>) -> Result<T, E>, P: TriplesParser> Iterator for TriplesParserIterator<T, E, F, P>[src]

type Item = Result<T, E>

The type of the elements being iterated over.

Auto Trait Implementations

impl<T, E, F, P> RefUnwindSafe for TriplesParserIterator<T, E, F, P> where
    F: RefUnwindSafe,
    P: RefUnwindSafe,
    T: RefUnwindSafe
[src]

impl<T, E, F, P> Send for TriplesParserIterator<T, E, F, P> where
    F: Send,
    P: Send,
    T: Send
[src]

impl<T, E, F, P> Sync for TriplesParserIterator<T, E, F, P> where
    F: Sync,
    P: Sync,
    T: Sync
[src]

impl<T, E, F, P> Unpin for TriplesParserIterator<T, E, F, P> where
    F: Unpin,
    P: Unpin,
    T: Unpin
[src]

impl<T, E, F, P> UnwindSafe for TriplesParserIterator<T, E, F, P> where
    F: UnwindSafe,
    P: UnwindSafe,
    T: UnwindSafe
[src]

Blanket Implementations

impl<I, O, E> AndThen<O, E> for I where
    I: Iterator<Item = Result<O, E>>, 

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<I, O, E> Filter<O, E> for I where
    I: Iterator<Item = Result<O, E>>, 

impl<I, O, E> FilterMap<O, E> for I where
    I: Iterator<Item = Result<O, E>>, 

impl<I, O, E> FlatMap<O, E> for I where
    I: Iterator<Item = Result<O, E>>, 

impl<I, O, E> Flatten<O, E> for I where
    I: Iterator<Item = Result<O, E>>, 

impl<T> From<T> for T[src]

impl<T, E, I> GetErrors<T, E> for I where
    I: Iterator<Item = Result<T, E>>, 

impl<T, E, I> GetOks<T, E> for I where
    I: Iterator<Item = Result<T, E>>, 

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<I, T, E, F> IterInnerOkOrElse<T, E, F> for I where
    F: Fn() -> E,
    I: Iterator<Item = Result<Option<T>, E>>, 

impl<I, O, E> Map<O, E> for I where
    I: Iterator<Item = Result<O, E>>, 

impl<I, O, E, F> OnErrDo<I, O, E, F> for I where
    F: Fn(&E),
    I: Iterator<Item = Result<O, E>>, 

impl<I, O, E, F> OnOkDo<I, O, E, F> for I where
    F: Fn(&O),
    I: Iterator<Item = Result<O, E>>, 

impl<I, T, E> QuadSource for I where
    E: 'static + Error,
    T: Quad,
    I: Iterator<Item = Result<T, E>>, 
[src]

type Error = E

The type of errors produced by this source.

type Quad = ByValue<T>

Determine the type of Quads that this quad source yields. (see streaming_mode Read more

impl<I, T, E> TripleSource for I where
    E: 'static + Error,
    T: Triple,
    I: Iterator<Item = Result<T, E>>, 
[src]

type Error = E

The type of errors produced by this source.

type Triple = ByValue<T>

Determine the type of Triples that this triple source yields. (see streaming_mode Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<I, O, E, F> UnwrapWithExt<I, O, E, F> for I where
    F: FnMut(E) -> Option<O>,
    I: Iterator<Item = Result<O, E>>, 

impl<I, O, E> WhileOk<O, E> for I where
    I: Iterator<Item = Result<O, E>>,