Trait GarbageChecker

Source
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§