pub trait CloneBox {
// Required method
fn clone_box(&self) -> BoxedDatabase;
}Available on crate feature
subnet only.Required Methods§
Sourcefn clone_box(&self) -> BoxedDatabase
fn clone_box(&self) -> BoxedDatabase
Returns a Boxed clone of the underlying Database.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".