Skip to main content

CheckpointManagerExt

Trait CheckpointManagerExt 

Source
pub trait CheckpointManagerExt {
    // Required method
    fn execute_stage<F, S, U>(
        &mut self,
        stage: WorkStage,
        next_stage: WorkStage,
        operation: F,
        skip_handler: S,
    ) -> ANNResult<U>
       where F: FnOnce() -> ANNResult<U>,
             S: FnOnce() -> ANNResult<U>;
}

Required Methods§

Source

fn execute_stage<F, S, U>( &mut self, stage: WorkStage, next_stage: WorkStage, operation: F, skip_handler: S, ) -> ANNResult<U>
where F: FnOnce() -> ANNResult<U>, S: FnOnce() -> ANNResult<U>,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§