Trait nature::db::RelationCache

source ·
pub trait RelationCache {
    fn get<'life0, 'life1, 'life2, 'life3, 'life4, 'async_trait, R, MC, M>(
        &'life0 self,
        meta: &'life1 Meta,
        getter: &'life2 R,
        meta_cache: &'life3 MC,
        meta_dao: &'life4 M
    ) -> Pin<Box<dyn Future<Output = Relations> + Send + 'async_trait>>
    where
        R: RelationDao + 'async_trait,
        MC: MetaCache + 'async_trait,
        M: MetaDao + 'async_trait,
        Self: 'async_trait,
        'life0: 'async_trait,
        'life1: 'async_trait,
        'life2: 'async_trait,
        'life3: 'async_trait,
        'life4: 'async_trait
; }

Required Methods§

Implementors§