ImportOptions

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§