Trait fyrox_resource::options::ImportOptions

source ·
pub trait ImportOptions: BaseImportOptions + Serialize + DeserializeOwned + Default + Clone {
    // Provided method
    fn save_internal(&self, path: &Path) -> bool { ... }
}
Expand description

A trait for resource import options. It provides generic functionality shared over all types of import options.

Provided Methods§

source

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

Saves import options into a specified file.

Object Safety§

This trait is not object safe.

Implementors§