pub enum MemoryKind {
Sqlite,
Json,
InMemory,
Markdown,
AgentScopedMarkdown,
AgentScoped,
Qdrant,
Postgres,
Lucid,
None,
Plugin,
}Variants§
Trait Implementations§
Source§impl Clone for MemoryKind
impl Clone for MemoryKind
Source§fn clone(&self) -> MemoryKind
fn clone(&self) -> MemoryKind
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MemoryKind
impl Debug for MemoryKind
Source§impl<'_derivative_strum> From<&'_derivative_strum MemoryKind> for &'static str
impl<'_derivative_strum> From<&'_derivative_strum MemoryKind> for &'static str
Source§fn from(x: &'_derivative_strum MemoryKind) -> &'static str
fn from(x: &'_derivative_strum MemoryKind) -> &'static str
Converts to this type from the input type.
Source§impl From<MemoryKind> for &'static str
impl From<MemoryKind> for &'static str
Source§fn from(x: MemoryKind) -> &'static str
fn from(x: MemoryKind) -> &'static str
Converts to this type from the input type.
Source§impl PartialEq for MemoryKind
impl PartialEq for MemoryKind
impl Copy for MemoryKind
impl Eq for MemoryKind
impl StructuralPartialEq for MemoryKind
Auto Trait Implementations§
impl Freeze for MemoryKind
impl RefUnwindSafe for MemoryKind
impl Send for MemoryKind
impl Sync for MemoryKind
impl Unpin for MemoryKind
impl UnsafeUnpin for MemoryKind
impl UnwindSafe for MemoryKind
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