Skip to main content

FindExistingBatchFileIndices

Trait FindExistingBatchFileIndices 

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

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

Required Associated Types§

Required Methods§

Source

fn find_existing_batch_file_indices<'async_trait>( self: Arc<Self>, ) -> Pin<Box<dyn Future<Output = Result<HashSet<BatchIndex>, 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".

Implementors§