pub struct AccountMonthlyEstimatedRevenue {
pub amount: i64,
pub currency: Currency,
}
Fields§
§amount: i64
A non-negative integer representing how much to charge in the smallest currency unit.
currency: Currency
Three-letter ISO currency code, in lowercase. Must be a supported currency.
Trait Implementations§
Source§impl Clone for AccountMonthlyEstimatedRevenue
impl Clone for AccountMonthlyEstimatedRevenue
Source§fn clone(&self) -> AccountMonthlyEstimatedRevenue
fn clone(&self) -> AccountMonthlyEstimatedRevenue
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 FromValueOpt for AccountMonthlyEstimatedRevenue
impl FromValueOpt for AccountMonthlyEstimatedRevenue
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for AccountMonthlyEstimatedRevenue
impl RefUnwindSafe for AccountMonthlyEstimatedRevenue
impl Send for AccountMonthlyEstimatedRevenue
impl Sync for AccountMonthlyEstimatedRevenue
impl Unpin for AccountMonthlyEstimatedRevenue
impl UnwindSafe for AccountMonthlyEstimatedRevenue
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