pub struct StatsResult {
pub tools: Vec<ToolStats>,
pub total_calls: i64,
pub error_pct: f64,
}Expand description
Aggregated result for the stats command.
Fields§
§tools: Vec<ToolStats>Per-tool/method breakdown, sorted by call count descending.
total_calls: i64Total calls across all tools.
error_pct: f64Overall error percentage.
Trait Implementations§
Source§impl Debug for StatsResult
impl Debug for StatsResult
Auto Trait Implementations§
impl Freeze for StatsResult
impl RefUnwindSafe for StatsResult
impl Send for StatsResult
impl Sync for StatsResult
impl Unpin for StatsResult
impl UnsafeUnpin for StatsResult
impl UnwindSafe for StatsResult
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