Trait ApplicationQuery
Source pub trait ApplicationQuery {
// Required methods
fn fetch_latest_mulingo<'life0, 'life1, 'life2, 'life3, 'life4, 'async_trait>(
&'life0 self,
owner: &'life1 MulingoOwner,
ns: &'life2 MulingoNameSpace,
msg_key: &'life3 MulingoMsgKey,
lang_key: &'life4 MulingoLangKey,
) -> Pin<Box<dyn Future<Output = Result<Option<MulingoEntity>, MulingoError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
'life4: 'async_trait;
fn fetch_mulingo<'life0, 'life1, 'life2, 'life3, 'life4, 'life5, 'async_trait>(
&'life0 self,
owner: &'life1 MulingoOwner,
ns: &'life2 MulingoNameSpace,
msg_key: &'life3 MulingoMsgKey,
lang_key: &'life4 MulingoLangKey,
version: &'life5 MulingoVersion,
) -> Pin<Box<dyn Future<Output = Result<Option<MulingoEntity>, MulingoError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
'life4: 'async_trait,
'life5: 'async_trait;
}