pub trait IntoHetMorselIterator<'a> {
    type Iter;
    fn into_het_morsel_iter<'h: 'a>(
        &'a mut self,
        executor: &'h mut HetMorselExecutor
    ) -> Self::Iter; }

Associated Types

The type of the iterator to produce.

Required methods

Create an iterator from a value.

See module-level documentation for details.

Implementations on Foreign Types

Implementors