pub struct DailyBucket {
pub date: String,
pub tokens_sent: u64,
pub tokens_saved: u64,
pub cost_usd_avoided: f64,
pub skills_used: HashMap<String, u64>,
pub top_lens: String,
}Fields§
§date: String§tokens_sent: u64§tokens_saved: u64§cost_usd_avoided: f64§skills_used: HashMap<String, u64>§top_lens: StringTrait Implementations§
Source§impl Clone for DailyBucket
impl Clone for DailyBucket
Source§fn clone(&self) -> DailyBucket
fn clone(&self) -> DailyBucket
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DailyBucket
impl Debug for DailyBucket
Source§impl<'de> Deserialize<'de> for DailyBucket
impl<'de> Deserialize<'de> for DailyBucket
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 DailyBucket
impl RefUnwindSafe for DailyBucket
impl Send for DailyBucket
impl Sync for DailyBucket
impl Unpin for DailyBucket
impl UnsafeUnpin for DailyBucket
impl UnwindSafe for DailyBucket
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