pub struct AnalyzeV2Result {
pub sessions_analyzed: usize,
pub nodes_created: usize,
pub nodes_updated: usize,
pub edges_created: usize,
pub nodes_merged: usize,
pub input_tokens: u64,
pub output_tokens: u64,
pub batch_count: usize,
}Expand description
Result of a v2 graph-based analysis run.
Fields§
§sessions_analyzed: usize§nodes_created: usize§nodes_updated: usize§edges_created: usize§nodes_merged: usize§input_tokens: u64§output_tokens: u64§batch_count: usizeTrait Implementations§
Source§impl Clone for AnalyzeV2Result
impl Clone for AnalyzeV2Result
Source§fn clone(&self) -> AnalyzeV2Result
fn clone(&self) -> AnalyzeV2Result
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 AnalyzeV2Result
impl RefUnwindSafe for AnalyzeV2Result
impl Send for AnalyzeV2Result
impl Sync for AnalyzeV2Result
impl Unpin for AnalyzeV2Result
impl UnsafeUnpin for AnalyzeV2Result
impl UnwindSafe for AnalyzeV2Result
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