Trait SignatureResultCacheFetcher
Source pub trait SignatureResultCacheFetcher<T: ResultCache> {
// Required methods
fn contains<'life0, 'life1, 'async_trait>(
&'life0 self,
task_request_id: &'life1 [u8],
) -> Pin<Box<dyn Future<Output = DataAccessResult<bool>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn get<'life0, 'life1, 'async_trait>(
&'life0 self,
task_request_id: &'life1 [u8],
) -> Pin<Box<dyn Future<Output = DataAccessResult<BLSResultCache<T>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}