pub struct LicenseDetails {Show 21 fields
pub license_id: String,
pub licensee: String,
pub contact: String,
pub license_type: String,
pub issued_at: String,
pub expires_at: String,
pub grace_period_days: i64,
pub expired_access_days: i64,
pub max_nodes: i64,
pub max_volumes: i64,
pub max_users: i64,
pub max_accounts: i64,
pub max_regions: i64,
pub max_storage_bytes: i64,
pub status: LicenseStatus,
pub days_remaining: i64,
pub grace_ends_at: String,
pub grace_days_left: i64,
pub expired_access_ends_at: String,
pub expired_access_days_left: i64,
pub quota: LicenseQuota,
}Fields§
§license_id: String§licensee: String§contact: String§license_type: String§issued_at: String§expires_at: String§grace_period_days: i64§expired_access_days: i64§max_nodes: i64§max_volumes: i64§max_users: i64§max_accounts: i64§max_regions: i64§max_storage_bytes: i64§status: LicenseStatus§days_remaining: i64§grace_ends_at: String§grace_days_left: i64§expired_access_ends_at: String§expired_access_days_left: i64§quota: LicenseQuotaTrait 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 (const: unstable) · 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
Auto Trait Implementations§
impl Freeze for LicenseDetails
impl RefUnwindSafe for LicenseDetails
impl Send for LicenseDetails
impl Sync for LicenseDetails
impl Unpin for LicenseDetails
impl UnsafeUnpin 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