pub trait LazyObject: Drop {
    // Required methods
    fn as_container(&self) -> LazyContainer;
    fn store_lazy(&self) -> Result<(), LDBError>;
    fn load_lazy(container: LazyContainer) -> Self;
    fn clear_cache(&mut self);
}

Required Methods§

Implementors§