pub trait CloneBox {
    fn clone_box(&self) -> Box<dyn Database + Send + Sync>;
}

Required Methods

Returns a Boxed clone of the underlying Database.

Implementors