[][src]Trait nature_db::MetaCache

pub trait MetaCache: Sync + Send {
#[must_use]    fn get<'life0, 'life1, 'life2, 'async_trait, M>(
        &'life0 self,
        meta_str: &'life1 str,
        getter: &'life2 M
    ) -> Pin<Box<dyn Future<Output = Result<Meta>> + Send + 'async_trait>>
    where
        M: MetaDao,
        M: 'async_trait,
        'life0: 'async_trait,
        'life1: 'async_trait,
        'life2: 'async_trait,
        Self: 'async_trait
; }

Required methods

#[must_use]fn get<'life0, 'life1, 'life2, 'async_trait, M>(
    &'life0 self,
    meta_str: &'life1 str,
    getter: &'life2 M
) -> Pin<Box<dyn Future<Output = Result<Meta>> + Send + 'async_trait>> where
    M: MetaDao,
    M: 'async_trait,
    'life0: 'async_trait,
    'life1: 'async_trait,
    'life2: 'async_trait,
    Self: 'async_trait, 

Loading content...

Implementors

impl MetaCache for MetaCacheImpl[src]

Loading content...