Trait Load

Source
pub trait Load: Sized + Save {
    // Provided method
    fn load(path: &str) -> Result<Self>
       where <Self as Save>::Meta: MetaLoad<Output = Self> { ... }
}

Provided Methods§

Source

fn load(path: &str) -> Result<Self>
where <Self as Save>::Meta: MetaLoad<Output = Self>,

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§