Skip to main content

DataLoaderIterator

Trait DataLoaderIterator 

Source
pub trait DataLoaderIterator<O>: Iterator<Item = O> {
    // Required method
    fn progress(&self) -> Progress;
}
Available on crate features dataset and std only.
Expand description

A data loader iterator that can be used to iterate over a data loader.

Required Methods§

Source

fn progress(&self) -> Progress

Returns the progress of the data loader.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§