soroban_sdk::iter

Trait UnwrappedEnumerable

Source
pub trait UnwrappedEnumerable<I, T, E> {
    // Required method
    fn unwrapped(self) -> UnwrappedIter<I, T, E> ;
}

Required Methods§

Source

fn unwrapped(self) -> UnwrappedIter<I, T, E>

Implementors§

Source§

impl<I, T, E> UnwrappedEnumerable<I, T, E> for I
where I: Iterator<Item = Result<T, E>>, E: Debug,