Type Alias lazy_list::LazyListOwned
source · pub type LazyListOwned<T> = LazyListBoxed<'static, T>;
Expand description
Type alias for a LazyList
with an unknown iterator type, which has no
borrowed data.
This type can be constructed via LazyList::boxed
, or by manually boxing
the iterator.
Aliased Type§
struct LazyListOwned<T> { /* private fields */ }