pub trait WrappingObjectStore: Debug + Send + Sync {
    // Required method
    fn wrap(&self, original: Arc<dyn OSObjectStore>) -> Arc<dyn OSObjectStore>;
}

Required Methods§

source

fn wrap(&self, original: Arc<dyn OSObjectStore>) -> Arc<dyn OSObjectStore>

Implementors§