pub trait Progress {
    type Tracker: Tracker;

    fn add_assets(&mut self, num: usize);
    fn create_tracker(self) -> Self::Tracker;
}
Expand description

The Progress trait, allowing to track which assets are imported already.

Required Associated Types

The tracker this progress can create.

Required Methods

Add num assets to the progress. This should be done whenever a new asset is put in the queue.

Creates a Tracker.

Implementations on Foreign Types

Implementors