fuel_core_storage::iter

Trait IntoBoxedIter

source
pub trait IntoBoxedIter<'a, T> {
    // Required method
    fn into_boxed(self) -> BoxedIter<'a, T> ;
}
Expand description

The traits simplifies conversion into BoxedIter.

Required Methods§

source

fn into_boxed(self) -> BoxedIter<'a, T>

Converts Self iterator into BoxedIter.

Implementors§

source§

impl<'a, T, I> IntoBoxedIter<'a, T> for I
where I: Iterator<Item = T> + 'a + Send,