pub enum ExtractionKind {
Incident,
BehaviorPattern,
Decision,
}Variants§
Incident
Repeated frustration / error markers within the session.
BehaviorPattern
Recurring behavior the user wants to standardize. Currently only emitted by sampling-derived candidates (R4b-2); Tier 1 heuristics never produce this kind directly.
Decision
User-stated decision. Currently only emitted by sampling-derived candidates; Tier 1 self-tag handles explicit decisions like “决定 X” / “以后都 Y”.
Implementations§
Source§impl ExtractionKind
impl ExtractionKind
pub fn memory_type(self) -> &'static str
Trait Implementations§
Source§impl Clone for ExtractionKind
impl Clone for ExtractionKind
Source§fn clone(&self) -> ExtractionKind
fn clone(&self) -> ExtractionKind
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 ExtractionKind
impl Debug for ExtractionKind
Source§impl<'de> Deserialize<'de> for ExtractionKind
impl<'de> Deserialize<'de> for ExtractionKind
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 PartialEq for ExtractionKind
impl PartialEq for ExtractionKind
Source§fn eq(&self, other: &ExtractionKind) -> bool
fn eq(&self, other: &ExtractionKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ExtractionKind
impl Serialize for ExtractionKind
impl Copy for ExtractionKind
impl Eq for ExtractionKind
impl StructuralPartialEq for ExtractionKind
Auto Trait Implementations§
impl Freeze for ExtractionKind
impl RefUnwindSafe for ExtractionKind
impl Send for ExtractionKind
impl Sync for ExtractionKind
impl Unpin for ExtractionKind
impl UnsafeUnpin for ExtractionKind
impl UnwindSafe for ExtractionKind
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,
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.