pub struct AccountTokenUsageSummary {
pub current_streak_days: Option<i64>,
pub lifetime_tokens: Option<i64>,
pub longest_running_turn_sec: Option<i64>,
pub longest_streak_days: Option<i64>,
pub peak_daily_tokens: Option<i64>,
}Fields§
§current_streak_days: Option<i64>§lifetime_tokens: Option<i64>§longest_running_turn_sec: Option<i64>§longest_streak_days: Option<i64>§peak_daily_tokens: Option<i64>Trait Implementations§
Source§impl Clone for AccountTokenUsageSummary
impl Clone for AccountTokenUsageSummary
Source§fn clone(&self) -> AccountTokenUsageSummary
fn clone(&self) -> AccountTokenUsageSummary
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 AccountTokenUsageSummary
impl Debug for AccountTokenUsageSummary
Source§impl<'de> Deserialize<'de> for AccountTokenUsageSummary
impl<'de> Deserialize<'de> for AccountTokenUsageSummary
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
Source§impl PartialEq for AccountTokenUsageSummary
impl PartialEq for AccountTokenUsageSummary
Source§fn eq(&self, other: &AccountTokenUsageSummary) -> bool
fn eq(&self, other: &AccountTokenUsageSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AccountTokenUsageSummary
impl Serialize for AccountTokenUsageSummary
impl StructuralPartialEq for AccountTokenUsageSummary
Auto Trait Implementations§
impl Freeze for AccountTokenUsageSummary
impl RefUnwindSafe for AccountTokenUsageSummary
impl Send for AccountTokenUsageSummary
impl Sync for AccountTokenUsageSummary
impl Unpin for AccountTokenUsageSummary
impl UnsafeUnpin for AccountTokenUsageSummary
impl UnwindSafe for AccountTokenUsageSummary
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