pub enum LicenseQuotaState {
Ok,
Exceeded,
Unknown(String),
}Expand description
LicenseQuotaState values accepted/returned on the wire. Unknown preserves a
value this SDK does not recognize yet, for forward compatibility with
a server that has introduced a new LicenseQuotaState value.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for LicenseQuotaState
impl Clone for LicenseQuotaState
Source§fn clone(&self) -> LicenseQuotaState
fn clone(&self) -> LicenseQuotaState
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 LicenseQuotaState
impl Debug for LicenseQuotaState
Source§impl<'de> Deserialize<'de> for LicenseQuotaState
impl<'de> Deserialize<'de> for LicenseQuotaState
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 Display for LicenseQuotaState
impl Display for LicenseQuotaState
impl Eq for LicenseQuotaState
Source§impl From<&str> for LicenseQuotaState
impl From<&str> for LicenseQuotaState
Source§impl PartialEq for LicenseQuotaState
impl PartialEq for LicenseQuotaState
Source§impl Serialize for LicenseQuotaState
impl Serialize for LicenseQuotaState
impl StructuralPartialEq for LicenseQuotaState
Auto Trait Implementations§
impl Freeze for LicenseQuotaState
impl RefUnwindSafe for LicenseQuotaState
impl Send for LicenseQuotaState
impl Sync for LicenseQuotaState
impl Unpin for LicenseQuotaState
impl UnsafeUnpin for LicenseQuotaState
impl UnwindSafe for LicenseQuotaState
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