pub struct Store {
pub conn: Connection,
}Expand description
Central store holding the SQLite connection.
Fields§
§conn: ConnectionImplementations§
Source§impl Store
impl Store
pub fn open(path: &Path) -> StoreResult<Self>
pub fn open_in_memory() -> StoreResult<Self>
Auto Trait Implementations§
impl !Freeze for Store
impl !RefUnwindSafe for Store
impl Send for Store
impl !Sync for Store
impl Unpin for Store
impl UnsafeUnpin for Store
impl !UnwindSafe for Store
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