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;
}