pub enum Preload {
All,
Paths(Vec<String>),
None,
}Expand description
Select which dbs to preload into memory.
Variants§
All
Preload all databases
Paths(Vec<String>)
Specify the path to load the database
None
Not preloaded, can be manually loaded later via RelaxedIdbUtil
Auto Trait Implementations§
impl Freeze for Preload
impl RefUnwindSafe for Preload
impl Send for Preload
impl Sync for Preload
impl Unpin for Preload
impl UnwindSafe for Preload
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