pub struct DayCostBreakdown {
pub date: String,
pub cost_usd: f64,
pub call_count: usize,
pub total_tokens: usize,
}Expand description
Cost breakdown by day
Fields§
§date: String§cost_usd: f64§call_count: usize§total_tokens: usizeTrait Implementations§
Source§impl Clone for DayCostBreakdown
impl Clone for DayCostBreakdown
Source§fn clone(&self) -> DayCostBreakdown
fn clone(&self) -> DayCostBreakdown
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 moreAuto Trait Implementations§
impl Freeze for DayCostBreakdown
impl RefUnwindSafe for DayCostBreakdown
impl Send for DayCostBreakdown
impl Sync for DayCostBreakdown
impl Unpin for DayCostBreakdown
impl UnsafeUnpin for DayCostBreakdown
impl UnwindSafe for DayCostBreakdown
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