pub enum ClaimCategory {
Fact,
Preference,
Decision,
Episodic,
Goal,
Context,
Summary,
Rule,
Entity,
Digest,
}Variants§
Fact
Preference
Decision
Episodic
Goal
Context
Summary
Rule
A reusable operational rule, non-obvious gotcha, or convention the user wants to remember for next time. Distinct from decisions (which have reasoning for a specific choice) and preferences (personal tastes): rules are impersonal, actionable, and transferable. Phase 2.2 addition.
Entity
Digest
Trait Implementations§
Source§impl Clone for ClaimCategory
impl Clone for ClaimCategory
Source§fn clone(&self) -> ClaimCategory
fn clone(&self) -> ClaimCategory
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 ClaimCategory
impl Debug for ClaimCategory
Source§impl<'de> Deserialize<'de> for ClaimCategory
impl<'de> Deserialize<'de> for ClaimCategory
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ClaimCategory, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ClaimCategory, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ClaimCategory
impl PartialEq for ClaimCategory
Source§impl Serialize for ClaimCategory
impl Serialize for ClaimCategory
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for ClaimCategory
impl Eq for ClaimCategory
impl StructuralPartialEq for ClaimCategory
Auto Trait Implementations§
impl Freeze for ClaimCategory
impl RefUnwindSafe for ClaimCategory
impl Send for ClaimCategory
impl Sync for ClaimCategory
impl Unpin for ClaimCategory
impl UnsafeUnpin for ClaimCategory
impl UnwindSafe for ClaimCategory
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