Trait Loadable

Source
pub trait Loadable {
    type Output: Send + Sync;

    // Required method
    fn load(&mut self) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn load(&mut self) -> Self::Output

Implementors§