pub trait GarbageChecker {
    // Required method
    fn check_offset<'life0, 'async_trait>(
        &'life0 self,
        offset: u64
    ) -> Pin<Box<dyn Future<Output = GarbageCheck> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

source

fn check_offset<'life0, 'async_trait>( &'life0 self, offset: u64 ) -> Pin<Box<dyn Future<Output = GarbageCheck> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Implementors§