pub enum MemoryCandidateKind {
Decision,
Summary,
Plan,
Schema,
RouteFeedback,
Contradiction,
Preference,
SavingsObservation,
}Expand description
Compact memory-candidate kind emitted after task completion.
Variants§
Trait Implementations§
Source§impl Clone for MemoryCandidateKind
impl Clone for MemoryCandidateKind
Source§fn clone(&self) -> MemoryCandidateKind
fn clone(&self) -> MemoryCandidateKind
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 moreimpl Copy for MemoryCandidateKind
Source§impl Debug for MemoryCandidateKind
impl Debug for MemoryCandidateKind
Source§impl<'de> Deserialize<'de> for MemoryCandidateKind
impl<'de> Deserialize<'de> for MemoryCandidateKind
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
impl Eq for MemoryCandidateKind
Source§impl Ord for MemoryCandidateKind
impl Ord for MemoryCandidateKind
Source§fn cmp(&self, other: &MemoryCandidateKind) -> Ordering
fn cmp(&self, other: &MemoryCandidateKind) -> 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 MemoryCandidateKind
impl PartialEq for MemoryCandidateKind
Source§fn eq(&self, other: &MemoryCandidateKind) -> bool
fn eq(&self, other: &MemoryCandidateKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for MemoryCandidateKind
impl PartialOrd for MemoryCandidateKind
Source§impl Serialize for MemoryCandidateKind
impl Serialize for MemoryCandidateKind
impl StructuralPartialEq for MemoryCandidateKind
Auto Trait Implementations§
impl Freeze for MemoryCandidateKind
impl RefUnwindSafe for MemoryCandidateKind
impl Send for MemoryCandidateKind
impl Sync for MemoryCandidateKind
impl Unpin for MemoryCandidateKind
impl UnsafeUnpin for MemoryCandidateKind
impl UnwindSafe for MemoryCandidateKind
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