Skip to main content

CheckpointManagerClone

Trait CheckpointManagerClone 

Source
pub trait CheckpointManagerClone {
    // Required method
    fn clone_box(&self) -> Box<dyn CheckpointManager>;
}
Expand description

This trait is used to clone the Box

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T> CheckpointManagerClone for T
where T: 'static + CheckpointManager + Clone,