pub struct Sub {
pub price_in_cents_with_discount: i64,
pub percent_savings_text: String,
pub percent_savings: i64,
pub packageid: i64,
pub option_text: String,
pub option_description: String,
pub is_free_license: bool,
pub can_get_free_license: String,
}Fields§
§price_in_cents_with_discount: i64§percent_savings_text: String§percent_savings: i64§packageid: i64§option_text: String§option_description: String§is_free_license: bool§can_get_free_license: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for Sub
impl<'de> Deserialize<'de> for Sub
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 Sub
impl RefUnwindSafe for Sub
impl Send for Sub
impl Sync for Sub
impl Unpin for Sub
impl UnsafeUnpin for Sub
impl UnwindSafe for Sub
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