pub enum MemoryKind {
LongTerm,
ShortTerm,
}Expand description
High-level memory retention domain.
Variants§
LongTerm
Durable long-term memory shared across sessions/agents.
ShortTerm
Explicitly marked short-term memory persisted for inspection or handoff.
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 Default for MemoryKind
impl Default for MemoryKind
Source§fn default() -> MemoryKind
fn default() -> MemoryKind
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MemoryKind
impl<'de> Deserialize<'de> for MemoryKind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for MemoryKind
impl Display for MemoryKind
Source§impl FromStr for MemoryKind
impl FromStr for MemoryKind
Source§impl PartialEq for MemoryKind
impl PartialEq for MemoryKind
Source§impl Serialize for MemoryKind
impl Serialize 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 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