pub struct MemoryStore { /* private fields */ }Expand description
Memory store backed by SQLite.
Implementations§
Source§impl MemoryStore
impl MemoryStore
Sourcepub fn list_all(&self) -> Result<Vec<MemoryFact>>
pub fn list_all(&self) -> Result<Vec<MemoryFact>>
List all memory facts.
Sourcepub fn list_by_category(&self, category: &str) -> Result<Vec<MemoryFact>>
pub fn list_by_category(&self, category: &str) -> Result<Vec<MemoryFact>>
List facts by category.
Auto Trait Implementations§
impl Freeze for MemoryStore
impl RefUnwindSafe for MemoryStore
impl Send for MemoryStore
impl Sync for MemoryStore
impl Unpin for MemoryStore
impl UnsafeUnpin for MemoryStore
impl UnwindSafe for MemoryStore
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