pub struct TotalStats {
pub turns: u32,
pub cost_usd: f64,
pub cost: TokenCost,
pub duration_secs: u64,
}Expand description
Cumulative statistics across all phases.
Fields§
§turns: u32Total conversation turns across all phases.
cost_usd: f64Total cost in USD across all phases.
cost: TokenCostTotal token usage across all phases.
duration_secs: u64Total wall-clock duration in seconds.
Trait Implementations§
Source§impl Clone for TotalStats
impl Clone for TotalStats
Source§fn clone(&self) -> TotalStats
fn clone(&self) -> TotalStats
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 moreSource§impl Debug for TotalStats
impl Debug for TotalStats
Source§impl Default for TotalStats
impl Default for TotalStats
Source§impl<'de> Deserialize<'de> for TotalStats
impl<'de> Deserialize<'de> for TotalStats
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 TotalStats
impl RefUnwindSafe for TotalStats
impl Send for TotalStats
impl Sync for TotalStats
impl Unpin for TotalStats
impl UnsafeUnpin for TotalStats
impl UnwindSafe for TotalStats
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