[][src]Trait problem::FailedToIter

pub trait FailedToIter<O, E, M>: Sized {
    fn or_failed_to(self, message: M) -> ProblemIter<Self, M>;
}

Convert Iterator of Result<O, E> to iterator of O and panic on first E with problem message

Required methods

Important traits for ProblemIter<I, M>
fn or_failed_to(self, message: M) -> ProblemIter<Self, M>

Loading content...

Implementors

impl<I, O, E, M> FailedToIter<O, E, M> for I where
    I: Iterator<Item = Result<O, E>>,
    E: Into<Problem>,
    M: Display
[src]

Loading content...