Trait iterable::TryExt

source ·
pub trait TryExt {
    type Output;
    type Error;
    type Map<U>: TryExt<Output = U, Error = Self::Error>;

    fn from_output(o: Self::Output) -> Self;
    fn branch<U>(self) -> ControlFlow<Self::Map<U>, Self::Output>;
}

Required Associated Types§

Required Methods§

Implementations on Foreign Types§

Implementors§