pub struct MarkdownMemoryStore { /* private fields */ }Implementations§
Trait Implementations§
Source§impl MemoryStore for MarkdownMemoryStore
impl MemoryStore for MarkdownMemoryStore
fn save<'life0, 'life1, 'async_trait>(
&'life0 self,
entry: &'life1 MemoryEntry,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn load_all<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<String>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn flush<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Auto Trait Implementations§
impl Freeze for MarkdownMemoryStore
impl RefUnwindSafe for MarkdownMemoryStore
impl Send for MarkdownMemoryStore
impl Sync for MarkdownMemoryStore
impl Unpin for MarkdownMemoryStore
impl UnsafeUnpin for MarkdownMemoryStore
impl UnwindSafe for MarkdownMemoryStore
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