pub enum Store {
Local(LocalStore),
}Expand description
Persistent key-value store.
Wraps either a local fjall database or a vsock-proxied store on the parent EC2 instance. All consumers use this type uniformly.
Variants§
Local(LocalStore)
Local fjall database (standard mode).
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for Store
impl !UnwindSafe for Store
impl Freeze for Store
impl Send for Store
impl Sync for Store
impl Unpin for Store
impl UnsafeUnpin 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