pub trait CloneBox {
    // Required method
    fn clone_box(&self) -> BoxedDatabase;
}

Required Methods§

source

fn clone_box(&self) -> BoxedDatabase

Returns a Boxed clone of the underlying Database.

Implementors§

source§

impl<T> CloneBox for Twhere T: 'static + Database + Clone + Send + Sync,