pub trait AsObjectStore {
type ObjectStoreT: ObjectStore + ?Sized;
// Required method
fn as_object_store(&self) -> &Self::ObjectStoreT;
}Expand description
A type that can provide an [object_store::ObjectStore] implementation.
pub trait AsObjectStore {
type ObjectStoreT: ObjectStore + ?Sized;
// Required method
fn as_object_store(&self) -> &Self::ObjectStoreT;
}A type that can provide an [object_store::ObjectStore] implementation.