pub enum MemoryEntryType {
Episodic,
Semantic,
Procedural,
Note,
Other(String),
}Expand description
MemoryEntryType enumeration.
Variants§
Episodic
Semantic
Procedural
Note
Other(String)
A value the API introduced after this SDK was generated.
Implementations§
Trait Implementations§
Source§impl Clone for MemoryEntryType
impl Clone for MemoryEntryType
Source§fn clone(&self) -> MemoryEntryType
fn clone(&self) -> MemoryEntryType
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 MemoryEntryType
impl Debug for MemoryEntryType
Source§impl Default for MemoryEntryType
impl Default for MemoryEntryType
Source§fn default() -> MemoryEntryType
fn default() -> MemoryEntryType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MemoryEntryType
impl<'de> Deserialize<'de> for MemoryEntryType
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 MemoryEntryType
impl Display for MemoryEntryType
impl Eq for MemoryEntryType
Source§impl From<&str> for MemoryEntryType
impl From<&str> for MemoryEntryType
Source§impl Hash for MemoryEntryType
impl Hash for MemoryEntryType
Source§impl PartialEq for MemoryEntryType
impl PartialEq for MemoryEntryType
Source§impl Serialize for MemoryEntryType
impl Serialize for MemoryEntryType
impl StructuralPartialEq for MemoryEntryType
Auto Trait Implementations§
impl Freeze for MemoryEntryType
impl RefUnwindSafe for MemoryEntryType
impl Send for MemoryEntryType
impl Sync for MemoryEntryType
impl Unpin for MemoryEntryType
impl UnsafeUnpin for MemoryEntryType
impl UnwindSafe for MemoryEntryType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.