#[repr(i32)]pub enum DbBackend {
Auto = 0,
Glass = 256,
Chert = 512,
Stub = 768,
InMemory = 1_024,
}
Expand description
The type of backend to use for the database
Variants§
Auto = 0
Automatically select a backend
Glass = 256
Use the Glass backend
Chert = 512
Use the Chert backend
Stub = 768
Use the stub backend
InMemory = 1_024
Use an in-memory database
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DbBackend
impl RefUnwindSafe for DbBackend
impl Send for DbBackend
impl Sync for DbBackend
impl Unpin for DbBackend
impl UnwindSafe for DbBackend
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