pub struct TokenSavingsTable {
pub claude_before: TokenEstimate,
pub claude_after: TokenEstimate,
pub gpt4o_before: TokenEstimate,
pub gpt4o_after: TokenEstimate,
pub gpt5_before: TokenEstimate,
pub gpt5_after: TokenEstimate,
pub gemini_before: TokenEstimate,
pub gemini_after: TokenEstimate,
}Expand description
Full token savings report for a before/after dimension pair across all models.
Fields§
§claude_before: TokenEstimate§claude_after: TokenEstimate§gpt4o_before: TokenEstimate§gpt4o_after: TokenEstimate§gpt5_before: TokenEstimate§gpt5_after: TokenEstimate§gemini_before: TokenEstimate§gemini_after: TokenEstimateImplementations§
Auto Trait Implementations§
impl Freeze for TokenSavingsTable
impl RefUnwindSafe for TokenSavingsTable
impl Send for TokenSavingsTable
impl Sync for TokenSavingsTable
impl Unpin for TokenSavingsTable
impl UnsafeUnpin for TokenSavingsTable
impl UnwindSafe for TokenSavingsTable
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> 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