pub trait ObjectTraverserCallBack: Send + Sync {
    // Required methods
    fn on_object<'life0, 'async_trait>(
        &'life0 self,
        item: TraverseObjectItem
    ) -> Pin<Box<dyn Future<Output = BuckyResult<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn on_chunk<'life0, 'async_trait>(
        &'life0 self,
        item: TraverseChunkItem
    ) -> Pin<Box<dyn Future<Output = BuckyResult<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn on_error<'life0, 'life1, 'async_trait>(
        &'life0 self,
        id: &'life1 ObjectId,
        e: BuckyError
    ) -> Pin<Box<dyn Future<Output = BuckyResult<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn on_missing<'life0, 'life1, 'async_trait>(
        &'life0 self,
        id: &'life1 ObjectId
    ) -> Pin<Box<dyn Future<Output = BuckyResult<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}

Required Methods§

source

fn on_object<'life0, 'async_trait>( &'life0 self, item: TraverseObjectItem ) -> Pin<Box<dyn Future<Output = BuckyResult<()>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

source

fn on_chunk<'life0, 'async_trait>( &'life0 self, item: TraverseChunkItem ) -> Pin<Box<dyn Future<Output = BuckyResult<()>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

source

fn on_error<'life0, 'life1, 'async_trait>( &'life0 self, id: &'life1 ObjectId, e: BuckyError ) -> Pin<Box<dyn Future<Output = BuckyResult<()>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

source

fn on_missing<'life0, 'life1, 'async_trait>( &'life0 self, id: &'life1 ObjectId ) -> Pin<Box<dyn Future<Output = BuckyResult<()>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementors§