pub struct SubscriptionNextBillingParam {
pub amount: i64,
pub date: String,
}
Fields§
§amount: i64
The amount of the next charge for the subscription.
date: String
The date of the next charge for the subscription in YYYY-MM-DD format.
Implementations§
Trait Implementations§
Source§impl Clone for SubscriptionNextBillingParam
impl Clone for SubscriptionNextBillingParam
Source§fn clone(&self) -> SubscriptionNextBillingParam
fn clone(&self) -> SubscriptionNextBillingParam
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 SubscriptionNextBillingParam
impl Debug for SubscriptionNextBillingParam
Auto Trait Implementations§
impl Freeze for SubscriptionNextBillingParam
impl RefUnwindSafe for SubscriptionNextBillingParam
impl Send for SubscriptionNextBillingParam
impl Sync for SubscriptionNextBillingParam
impl Unpin for SubscriptionNextBillingParam
impl UnwindSafe for SubscriptionNextBillingParam
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