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§
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,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".