pub struct DatabaseConfig {
pub name: String,
pub source: String,
pub edb_sources: Vec<Arc<dyn EdbSource>>,
pub idb_mode: IdbMode,
pub recompute: RecomputeStrategy,
pub store_backend: StoreBackend,
}Expand description
Configuration for opening a Database.
Fields§
§name: String§source: String§edb_sources: Vec<Arc<dyn EdbSource>>§idb_mode: IdbMode§recompute: RecomputeStrategy§store_backend: StoreBackendAuto Trait Implementations§
impl Freeze for DatabaseConfig
impl !RefUnwindSafe for DatabaseConfig
impl Send for DatabaseConfig
impl Sync for DatabaseConfig
impl Unpin for DatabaseConfig
impl UnsafeUnpin for DatabaseConfig
impl !UnwindSafe for DatabaseConfig
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