pub enum StoreBackend {
InMemory,
Disk(PathBuf),
}Expand description
Where the working store lives during and after execution.
Variants§
InMemory
All facts in memory (HashMap-based MemStore).
Disk(PathBuf)
Disk-backed store for large datasets (requires disk feature).
Auto Trait Implementations§
impl Freeze for StoreBackend
impl RefUnwindSafe for StoreBackend
impl Send for StoreBackend
impl Sync for StoreBackend
impl Unpin for StoreBackend
impl UnsafeUnpin for StoreBackend
impl UnwindSafe for StoreBackend
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