pub enum ImportError {
    RequireSources {
        sources: Vec<String>,
    },
    RequireDependencies {
        dependencies: Vec<Dependency>,
    },
    Other {
        reason: String,
    },
}
Expand description

Result of Importer::import method.

Variants

RequireSources

Fields

sources: Vec<String>

URLs relative to source path.

Importer requires data from other sources.

RequireDependencies

Fields

dependencies: Vec<Dependency>

Importer requires following dependencies.

Other

Fields

reason: String

Failure reason.

Importer failed to import the asset.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.