pub struct SqliteStorage { /* private fields */ }
Expand description
An on-disk storage backend which uses SQLite.
A new connection is opened for each transaction, and only one transaction may be active at a
time; a second call to txn
will block until the first transaction is dropped.
Implementations§
Source§impl SqliteStorage
impl SqliteStorage
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SqliteStorage
impl RefUnwindSafe for SqliteStorage
impl Send for SqliteStorage
impl Sync for SqliteStorage
impl Unpin for SqliteStorage
impl UnwindSafe for SqliteStorage
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