pub trait BaseImportOptions: Downcast + Reflect {
// Required method
fn save(&self, path: &Path) -> bool;
}
Expand description
Base type-agnostic trait for resource import options. This trait has automatic implementation
for everything that implements ImportOptions
trait.