Trait fuel_core_storage::iter::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§
sourcefn into_boxed(self) -> BoxedIter<'a, T> ⓘ
fn into_boxed(self) -> BoxedIter<'a, T> ⓘ
Converts Self
iterator into BoxedIter
.