pub enum AiMemoryKind {
Preference,
Fact,
Instruction,
Summary,
Skill,
Relationship,
Project,
Workflow,
Correction,
Custom,
}Variants§
Implementations§
Source§impl AiMemoryKind
impl AiMemoryKind
Trait Implementations§
Source§impl Clone for AiMemoryKind
impl Clone for AiMemoryKind
Source§fn clone(&self) -> AiMemoryKind
fn clone(&self) -> AiMemoryKind
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 AiMemoryKind
impl Debug for AiMemoryKind
Source§impl Display for AiMemoryKind
impl Display for AiMemoryKind
Source§impl FromStr for AiMemoryKind
impl FromStr for AiMemoryKind
Source§type Err = AiMemoryError
type Err = AiMemoryError
The associated error which can be returned from parsing.
Source§fn from_str(value: &str) -> Result<AiMemoryKind, <AiMemoryKind as FromStr>::Err>
fn from_str(value: &str) -> Result<AiMemoryKind, <AiMemoryKind as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl Hash for AiMemoryKind
impl Hash for AiMemoryKind
Source§impl Ord for AiMemoryKind
impl Ord for AiMemoryKind
Source§fn cmp(&self, other: &AiMemoryKind) -> Ordering
fn cmp(&self, other: &AiMemoryKind) -> 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 AiMemoryKind
impl PartialEq for AiMemoryKind
Source§fn eq(&self, other: &AiMemoryKind) -> bool
fn eq(&self, other: &AiMemoryKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for AiMemoryKind
impl PartialOrd for AiMemoryKind
impl Copy for AiMemoryKind
impl Eq for AiMemoryKind
impl StructuralPartialEq for AiMemoryKind
Auto Trait Implementations§
impl Freeze for AiMemoryKind
impl RefUnwindSafe for AiMemoryKind
impl Send for AiMemoryKind
impl Sync for AiMemoryKind
impl Unpin for AiMemoryKind
impl UnsafeUnpin for AiMemoryKind
impl UnwindSafe for AiMemoryKind
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