pub struct SessionSummary {
pub commands: u64,
pub input_tokens: u64,
pub output_tokens: u64,
pub saved_tokens: i64,
pub savings_pct: f64,
pub total_time_ms: u64,
}Expand description
Session summary.
Fields§
§commands: u64§input_tokens: u64§output_tokens: u64§saved_tokens: i64§savings_pct: f64§total_time_ms: u64Trait Implementations§
Auto Trait Implementations§
impl Freeze for SessionSummary
impl RefUnwindSafe for SessionSummary
impl Send for SessionSummary
impl Sync for SessionSummary
impl Unpin for SessionSummary
impl UnsafeUnpin for SessionSummary
impl UnwindSafe for SessionSummary
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