pub trait Tracker: Send + 'static {
    fn success(self: Box<Self>);
    fn fail(
        self: Box<Self>,
        handle_id: u32,
        asset_type_name: &'static str,
        asset_name: String,
        error: Error
    ); }
Expand description

The Tracker trait which will be used by the loader to report back to Progress.

Required Methods

Called if the asset could be imported.

Called if the asset couldn’t be imported to an error.

Implementations on Foreign Types

Implementors