pub struct ReportInvestment {
pub amount: i64,
pub until: i32,
}
Fields§
§amount: i64
§until: i32
Trait Implementations§
Source§impl Clone for ReportInvestment
impl Clone for ReportInvestment
Source§fn clone(&self) -> ReportInvestment
fn clone(&self) -> ReportInvestment
Returns a copy 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 ReportInvestment
impl Debug for ReportInvestment
Source§impl<'de> Deserialize<'de> for ReportInvestment
impl<'de> Deserialize<'de> for ReportInvestment
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 From<ReportInvestment> for Report
impl From<ReportInvestment> for Report
Source§fn from(value: ReportInvestment) -> Self
fn from(value: ReportInvestment) -> Self
Converts to this type from the input type.
Source§impl From<ReportInvestment> for Report
impl From<ReportInvestment> for Report
Source§fn from(value: ReportInvestment) -> Self
fn from(value: ReportInvestment) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ReportInvestment
impl PartialEq for ReportInvestment
impl StructuralPartialEq for ReportInvestment
Auto Trait Implementations§
impl Freeze for ReportInvestment
impl RefUnwindSafe for ReportInvestment
impl Send for ReportInvestment
impl Sync for ReportInvestment
impl Unpin for ReportInvestment
impl UnwindSafe for ReportInvestment
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