[][src]Trait fallible::iter::TryIterator

pub trait TryIterator {
    type Item;
    type Error;
    fn try_next(&mut self) -> Result<Option<Self::Item>, Self::Error>;
}

Associated Types

type Item

type Error

Loading content...

Required methods

fn try_next(&mut self) -> Result<Option<Self::Item>, Self::Error>

Loading content...

Implementors

impl<I: Iterator> TryIterator for I[src]

type Item = <I as Iterator>::Item

type Error = Void

Loading content...