pub trait CheckpointManagerClone {
// Required method
fn clone_box(&self) -> Box<dyn CheckpointManager>;
}Expand description
This trait is used to clone the Box
Required Methods§
fn clone_box(&self) -> Box<dyn CheckpointManager>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".