pub struct PricingPhase {
pub formatted_price: String,
pub price_currency_code: String,
pub price_amount_micros: i64,
pub billing_period: String,
pub billing_cycle_count: i32,
pub recurrence_mode: i32,
}Fields§
§formatted_price: String§price_currency_code: String§price_amount_micros: i64§billing_period: String§billing_cycle_count: i32§recurrence_mode: i32Trait Implementations§
Source§impl Clone for PricingPhase
impl Clone for PricingPhase
Source§fn clone(&self) -> PricingPhase
fn clone(&self) -> PricingPhase
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 PricingPhase
impl Debug for PricingPhase
Source§impl<'de> Deserialize<'de> for PricingPhase
impl<'de> Deserialize<'de> for PricingPhase
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 PricingPhase
impl RefUnwindSafe for PricingPhase
impl Send for PricingPhase
impl Sync for PricingPhase
impl Unpin for PricingPhase
impl UnwindSafe for PricingPhase
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