pub struct AnalyzeResult {
pub sessions_analyzed: usize,
pub new_patterns: usize,
pub updated_patterns: usize,
pub total_patterns: usize,
pub input_tokens: u64,
pub output_tokens: u64,
pub batch_details: Vec<BatchDetail>,
}Expand description
Result of an analysis run.
Fields§
§sessions_analyzed: usize§new_patterns: usize§updated_patterns: usize§total_patterns: usize§input_tokens: u64§output_tokens: u64§batch_details: Vec<BatchDetail>Trait Implementations§
Source§impl Clone for AnalyzeResult
impl Clone for AnalyzeResult
Source§fn clone(&self) -> AnalyzeResult
fn clone(&self) -> AnalyzeResult
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 moreAuto Trait Implementations§
impl Freeze for AnalyzeResult
impl RefUnwindSafe for AnalyzeResult
impl Send for AnalyzeResult
impl Sync for AnalyzeResult
impl Unpin for AnalyzeResult
impl UnsafeUnpin for AnalyzeResult
impl UnwindSafe for AnalyzeResult
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