[][src]Trait nature_db::RelationCache

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

Required methods

#[must_use]fn get<'life0, 'life1, 'life2, 'life3, 'life4, 'async_trait, R, MC, M>(
    &'life0 self,
    meta_from: &'life1 str,
    getter: &'life2 R,
    meta_cache: &'life3 MC,
    meta: &'life4 M
) -> Pin<Box<dyn Future<Output = Relations> + Send + 'async_trait>> where
    R: RelationDao,
    MC: MetaCache,
    M: MetaDao,
    R: 'async_trait,
    MC: 'async_trait,
    M: 'async_trait,
    'life0: 'async_trait,
    'life1: 'async_trait,
    'life2: 'async_trait,
    'life3: 'async_trait,
    'life4: 'async_trait,
    Self: 'async_trait, 

Loading content...

Implementors

impl RelationCache for RelationCacheImpl[src]

Loading content...