Trait GatherAllBatchTriples

Source
pub trait GatherAllBatchTriples: Send + Sync {
    type Error;

    // Required method
    fn gather_all_batch_triples<'async_trait>(
        self: Arc<Self>,
    ) -> Pin<Box<dyn Future<Output = Result<Vec<BatchFileTriple>, Self::Error>> + Send + 'async_trait>>
       where Self: 'async_trait;
}

Required Associated Types§

Required Methods§

Source

fn gather_all_batch_triples<'async_trait>( self: Arc<Self>, ) -> Pin<Box<dyn Future<Output = Result<Vec<BatchFileTriple>, Self::Error>> + Send + 'async_trait>>
where Self: 'async_trait,

Implementors§

Source§

impl<T> GatherAllBatchTriples for T
where T: for<'async_trait> LocateBatchFiles + for<'async_trait> FindExistingBatchFileIndices + for<'async_trait> Send + for<'async_trait> Sync + 'async_trait, BatchWorkspaceError: From<<T as LocateBatchFiles>::Error> + From<<T as FindExistingBatchFileIndices>::Error>,