pub trait IteratorImpl<T>: Clone + Send + 'static
where for<'a> T: FromValue<'a> + StaticType + ToValue + Send + 'static,
{ // Required methods fn next(&mut self) -> Option<Result<T, IteratorError>>; fn resync(&mut self); }

Required Methods§

source

fn next(&mut self) -> Option<Result<T, IteratorError>>

source

fn resync(&mut self)

Object Safety§

This trait is not object safe.

Implementors§