pub struct NumContributonWithDate {
pub date_contribution: i64,
pub num_contributions: i64,
}Fields§
§date_contribution: i64§num_contributions: i64Implementations§
Source§impl NumContributonWithDate
impl NumContributonWithDate
pub fn new( date_contribution: i64, num_contributions: i64, ) -> NumContributonWithDate
Trait Implementations§
Source§impl Clone for NumContributonWithDate
impl Clone for NumContributonWithDate
Source§fn clone(&self) -> NumContributonWithDate
fn clone(&self) -> NumContributonWithDate
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 NumContributonWithDate
impl Debug for NumContributonWithDate
Source§impl Default for NumContributonWithDate
impl Default for NumContributonWithDate
Source§fn default() -> NumContributonWithDate
fn default() -> NumContributonWithDate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NumContributonWithDate
impl<'de> Deserialize<'de> for NumContributonWithDate
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 NumContributonWithDate
impl PartialEq for NumContributonWithDate
Source§impl Serialize for NumContributonWithDate
impl Serialize for NumContributonWithDate
impl StructuralPartialEq for NumContributonWithDate
Auto Trait Implementations§
impl Freeze for NumContributonWithDate
impl RefUnwindSafe for NumContributonWithDate
impl Send for NumContributonWithDate
impl Sync for NumContributonWithDate
impl Unpin for NumContributonWithDate
impl UnwindSafe for NumContributonWithDate
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