Trait flechasdb::asyncdb::stored::LoadAttributesLog
source · pub trait LoadAttributesLog<'db> {
// Required method
fn load_attributes_log<'async_trait>(
&'db self,
index: usize
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'db: 'async_trait;
}Expand description
Capability of loading the attributes log of a partition.
Supposed to be specialized for a specific Database.