pub struct ObjectStoreManager {
stores: HashMap<String, ObjectStore>,
default_object_store: ObjectStore,
}
Expand description
Manages multiple object stores so that users can configure a storage for each table. This struct certainly have one default object store, and can have zero or more custom object stores.
Fields§
§stores: HashMap<String, ObjectStore>
§default_object_store: ObjectStore
Implementations§
Source§impl ObjectStoreManager
impl ObjectStoreManager
Sourcepub fn new(name: &str, object_store: ObjectStore) -> Self
pub fn new(name: &str, object_store: ObjectStore) -> Self
Creates a new manager from the object store used as a default one.
Sourcepub fn add(&mut self, name: &str, object_store: ObjectStore)
pub fn add(&mut self, name: &str, object_store: ObjectStore)
Sourcepub fn find(&self, name: &str) -> Option<&ObjectStore>
pub fn find(&self, name: &str) -> Option<&ObjectStore>
Finds an object store corresponding to the name.
Sourcepub fn default_object_store(&self) -> &ObjectStore
pub fn default_object_store(&self) -> &ObjectStore
Returns the default object storage
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ObjectStoreManager
impl !RefUnwindSafe for ObjectStoreManager
impl Send for ObjectStoreManager
impl Sync for ObjectStoreManager
impl Unpin for ObjectStoreManager
impl !UnwindSafe for ObjectStoreManager
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request