[][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

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

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

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

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

Blanket Implementations

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<T> From<T> for T[src]

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<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.