Trait kanidm_unix_resolver::db::Cache
source · pub trait Cache {
type Txn<'db>
where Self: 'db;
// Required method
fn write<'db, 'async_trait>(
&'db self,
) -> Pin<Box<dyn Future<Output = Self::Txn<'db>> + Send + 'async_trait>>
where Self: 'async_trait,
'db: 'async_trait;
}
Required Associated Types§
Required Methods§
fn write<'db, 'async_trait>(
&'db self,
) -> Pin<Box<dyn Future<Output = Self::Txn<'db>> + Send + 'async_trait>>where
Self: 'async_trait,
'db: 'async_trait,
Object Safety§
This trait is not object safe.