pub struct LicenseDetails {
pub service_plans: Vec<ServicePlanInfo>,
pub sku_id: String,
pub sku_part_number: String,
}
Fields§
§service_plans: Vec<ServicePlanInfo>
§sku_id: String
§sku_part_number: String
Trait Implementations§
Source§impl Clone for LicenseDetails
impl Clone for LicenseDetails
Source§fn clone(&self) -> LicenseDetails
fn clone(&self) -> LicenseDetails
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 LicenseDetails
impl Debug for LicenseDetails
Source§impl<'de> Deserialize<'de> for LicenseDetails
impl<'de> Deserialize<'de> for LicenseDetails
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
Source§impl PartialEq for LicenseDetails
impl PartialEq for LicenseDetails
Source§impl Serialize for LicenseDetails
impl Serialize for LicenseDetails
impl Eq for LicenseDetails
impl StructuralPartialEq for LicenseDetails
Auto Trait Implementations§
impl Freeze for LicenseDetails
impl RefUnwindSafe for LicenseDetails
impl Send for LicenseDetails
impl Sync for LicenseDetails
impl Unpin for LicenseDetails
impl UnwindSafe for LicenseDetails
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