pub struct LicenseQuota {
pub state: LicenseQuotaState,
pub live_volume: i64,
pub total_volume: i64,
pub generation: i64,
pub last_transition_at_ms: i64,
}Fields§
§state: LicenseQuotaState§live_volume: i64§total_volume: i64§generation: i64§last_transition_at_ms: i64Trait Implementations§
Source§impl Clone for LicenseQuota
impl Clone for LicenseQuota
Source§fn clone(&self) -> LicenseQuota
fn clone(&self) -> LicenseQuota
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 LicenseQuota
impl Debug for LicenseQuota
Source§impl<'de> Deserialize<'de> for LicenseQuota
impl<'de> Deserialize<'de> for LicenseQuota
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 LicenseQuota
impl RefUnwindSafe for LicenseQuota
impl Send for LicenseQuota
impl Sync for LicenseQuota
impl Unpin for LicenseQuota
impl UnsafeUnpin for LicenseQuota
impl UnwindSafe for LicenseQuota
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