pub trait FromIndexicalIterator<'a, T: IndexedValue + 'a, P: PointerFamily<'a>, M, A>: Sized {
// Required method
fn from_indexical_iter(
iter: impl Iterator<Item = A>,
domain: &P::Pointer<IndexedDomain<T>>,
) -> Self;
}
Expand description
Generic interface for converting iterators into indexical collections.
Required Methods§
Sourcefn from_indexical_iter(
iter: impl Iterator<Item = A>,
domain: &P::Pointer<IndexedDomain<T>>,
) -> Self
fn from_indexical_iter( iter: impl Iterator<Item = A>, domain: &P::Pointer<IndexedDomain<T>>, ) -> Self
Converts an iterator into a collection within the given domain.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.