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

Required Methods§

Implementors§