pub enum PatternType {
Sequential,
Causal,
Comparative,
Hypothetical,
Analytical,
ProblemSolving,
SelfCorrection,
Uncertainty,
}Expand description
Different types of reasoning patterns
Variants§
Sequential
Sequential reasoning (step 1, step 2, etc.)
Causal
Causal reasoning (because, therefore, so)
Comparative
Comparative reasoning (better than, worse than, similar to)
Hypothetical
Hypothetical reasoning (if, suppose, assume)
Analytical
Analytical reasoning (analyze, examine, consider)
ProblemSolving
Problem-solving (solution, approach, method)
SelfCorrection
Self-correction (actually, wait, let me reconsider)
Uncertainty
Uncertainty (maybe, perhaps, might be)
Trait Implementations§
Source§impl Clone for PatternType
impl Clone for PatternType
Source§fn clone(&self) -> PatternType
fn clone(&self) -> PatternType
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 PatternType
impl Debug for PatternType
Source§impl<'de> Deserialize<'de> for PatternType
impl<'de> Deserialize<'de> for PatternType
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
Auto Trait Implementations§
impl Freeze for PatternType
impl RefUnwindSafe for PatternType
impl Send for PatternType
impl Sync for PatternType
impl Unpin for PatternType
impl UnsafeUnpin for PatternType
impl UnwindSafe for PatternType
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