pub struct CreditDataPoint {
pub date: String,
pub used: i64,
pub transferred: i64,
pub purchased: i64,
}Fields§
§date: String§used: i64§transferred: i64§purchased: i64Trait Implementations§
Source§impl Clone for CreditDataPoint
impl Clone for CreditDataPoint
Source§fn clone(&self) -> CreditDataPoint
fn clone(&self) -> CreditDataPoint
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 moreSource§impl Debug for CreditDataPoint
impl Debug for CreditDataPoint
Source§impl<'de> Deserialize<'de> for CreditDataPoint
impl<'de> Deserialize<'de> for CreditDataPoint
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 CreditDataPoint
impl RefUnwindSafe for CreditDataPoint
impl Send for CreditDataPoint
impl Sync for CreditDataPoint
impl Unpin for CreditDataPoint
impl UnsafeUnpin for CreditDataPoint
impl UnwindSafe for CreditDataPoint
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