pub enum MemoryKind {
Episodic,
Semantic,
Procedural,
Strategic,
Affective,
}Expand description
Category of a memory entry.
Variants§
Episodic
Event-based episodic memory.
Semantic
Generalised semantic knowledge.
Procedural
How-to procedural knowledge.
Strategic
High-level strategic knowledge.
Affective
Affective or preference-related memory.
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 (const: unstable) · 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<'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 Ord for MemoryKind
impl Ord for MemoryKind
Source§fn cmp(&self, other: &MemoryKind) -> Ordering
fn cmp(&self, other: &MemoryKind) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MemoryKind
impl PartialEq for MemoryKind
Source§fn eq(&self, other: &MemoryKind) -> bool
fn eq(&self, other: &MemoryKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for MemoryKind
impl PartialOrd for MemoryKind
Source§impl Serialize for MemoryKind
impl Serialize 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