pub struct ThinkingAnalysis {
pub length: usize,
pub word_count: usize,
pub reasoning_steps: usize,
pub questions_count: usize,
pub complexity_score: f64,
pub patterns: Vec<ReasoningPattern>,
pub thinking_time_ms: Option<u64>,
pub insights: Vec<String>,
}Expand description
Analysis results for thinking content
Fields§
§length: usizeTotal length of thinking content in characters
word_count: usizeNumber of words in thinking content
reasoning_steps: usizeNumber of reasoning steps identified
questions_count: usizeNumber of questions asked during thinking
complexity_score: f64Complexity score (0.0 to 1.0)
patterns: Vec<ReasoningPattern>Reasoning patterns found
thinking_time_ms: Option<u64>Time spent thinking (if available)
insights: Vec<String>Key insights extracted
Trait Implementations§
Source§impl Clone for ThinkingAnalysis
impl Clone for ThinkingAnalysis
Source§fn clone(&self) -> ThinkingAnalysis
fn clone(&self) -> ThinkingAnalysis
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 ThinkingAnalysis
impl Debug for ThinkingAnalysis
Source§impl<'de> Deserialize<'de> for ThinkingAnalysis
impl<'de> Deserialize<'de> for ThinkingAnalysis
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 ThinkingAnalysis
impl RefUnwindSafe for ThinkingAnalysis
impl Send for ThinkingAnalysis
impl Sync for ThinkingAnalysis
impl Unpin for ThinkingAnalysis
impl UnsafeUnpin for ThinkingAnalysis
impl UnwindSafe for ThinkingAnalysis
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