Trait resiter::Process

source ·
pub trait Process<T> {
    fn process<R: Default, E, F>(self, f: F) -> Result<R, E>
    where
        F: Fn(T) -> Result<R, E>
; }
Expand description

Extend any Iterator with a process method, equivalent to a fallible for_each.

Required Methods§

Implementors§