pub struct SubscriptionPeriod {
pub start_date: String,
pub monthly_price_usd: f64,
pub plan: Option<String>,
}Fields§
§start_date: String§monthly_price_usd: f64§plan: Option<String>Trait Implementations§
Source§impl Debug for SubscriptionPeriod
impl Debug for SubscriptionPeriod
Source§impl<'de> Deserialize<'de> for SubscriptionPeriod
impl<'de> Deserialize<'de> for SubscriptionPeriod
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 SubscriptionPeriod
impl RefUnwindSafe for SubscriptionPeriod
impl Send for SubscriptionPeriod
impl Sync for SubscriptionPeriod
impl Unpin for SubscriptionPeriod
impl UnsafeUnpin for SubscriptionPeriod
impl UnwindSafe for SubscriptionPeriod
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