pub enum CreateQuotaPolicyResult {
Created {
quota_policy_id: QuotaPolicyId,
},
AlreadySatisfied {
quota_policy_id: QuotaPolicyId,
},
}Variants§
Created
Quota policy created.
Fields
§
quota_policy_id: QuotaPolicyIdAlreadySatisfied
Already exists (idempotent).
Fields
§
quota_policy_id: QuotaPolicyIdTrait Implementations§
Source§impl Clone for CreateQuotaPolicyResult
impl Clone for CreateQuotaPolicyResult
Source§fn clone(&self) -> CreateQuotaPolicyResult
fn clone(&self) -> CreateQuotaPolicyResult
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 CreateQuotaPolicyResult
impl Debug for CreateQuotaPolicyResult
Source§impl<'de> Deserialize<'de> for CreateQuotaPolicyResult
impl<'de> Deserialize<'de> for CreateQuotaPolicyResult
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 CreateQuotaPolicyResult
impl PartialEq for CreateQuotaPolicyResult
Source§impl Serialize for CreateQuotaPolicyResult
impl Serialize for CreateQuotaPolicyResult
impl Eq for CreateQuotaPolicyResult
impl StructuralPartialEq for CreateQuotaPolicyResult
Auto Trait Implementations§
impl Freeze for CreateQuotaPolicyResult
impl RefUnwindSafe for CreateQuotaPolicyResult
impl Send for CreateQuotaPolicyResult
impl Sync for CreateQuotaPolicyResult
impl Unpin for CreateQuotaPolicyResult
impl UnsafeUnpin for CreateQuotaPolicyResult
impl UnwindSafe for CreateQuotaPolicyResult
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