Trait lazy_db::lazy_trait::LazyObject
source · 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);
}