pub struct StatsDiff {
pub tool_calls_a: u32,
pub tool_calls_b: u32,
pub tokens_saved_a: u64,
pub tokens_saved_b: u64,
pub files_read_a: u32,
pub files_read_b: u32,
pub commands_a: u32,
pub commands_b: u32,
}Fields§
§tool_calls_a: u32§tool_calls_b: u32§tokens_saved_a: u64§tokens_saved_b: u64§files_read_a: u32§files_read_b: u32§commands_a: u32§commands_b: u32Trait Implementations§
Auto Trait Implementations§
impl Freeze for StatsDiff
impl RefUnwindSafe for StatsDiff
impl Send for StatsDiff
impl Sync for StatsDiff
impl Unpin for StatsDiff
impl UnsafeUnpin for StatsDiff
impl UnwindSafe for StatsDiff
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more