Trait BaseImportOptions

Source
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.

Required Methods§

Source

fn save(&self, path: &Path) -> bool

Saves the options to a file at the given path.

Implementors§