pub trait Load {
    // Required method
    fn load(&mut self) -> bool;
}

Required Methods§

source

fn load(&mut self) -> bool

| Load saved state. |

Implementors§