pub trait LazyObject {
    // Required methods
    fn as_container(&self) -> LazyContainer;
    fn store_lazy(path: impl AsRef<Path>) -> Result<(), LDBError>;
    fn load_lazy(data: LazyContainer) -> Result<(), LDBError>;
}

Required Methods§

Implementors§