pub struct ProjectBreakdown {
pub project_hash: String,
pub name: String,
pub total_tokens: u64,
pub savings_pct: f64,
pub last_active: String,
}Fields§
§project_hash: String§name: String§total_tokens: u64§savings_pct: f64§last_active: StringTrait Implementations§
Source§impl Clone for ProjectBreakdown
impl Clone for ProjectBreakdown
Source§fn clone(&self) -> ProjectBreakdown
fn clone(&self) -> ProjectBreakdown
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 ProjectBreakdown
impl Debug for ProjectBreakdown
Source§impl<'de> Deserialize<'de> for ProjectBreakdown
impl<'de> Deserialize<'de> for ProjectBreakdown
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 ProjectBreakdown
impl RefUnwindSafe for ProjectBreakdown
impl Send for ProjectBreakdown
impl Sync for ProjectBreakdown
impl Unpin for ProjectBreakdown
impl UnsafeUnpin for ProjectBreakdown
impl UnwindSafe for ProjectBreakdown
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