pub struct QuotaGroup {
pub name: Option<String>,
pub rules: Option<Vec<QuotaRuleInfo>>,
}Expand description
QuotaGroup represents a quota group
Fields§
§name: Option<String>Name of the group
rules: Option<Vec<QuotaRuleInfo>>Rules associated with the group
Trait Implementations§
Source§impl Clone for QuotaGroup
impl Clone for QuotaGroup
Source§fn clone(&self) -> QuotaGroup
fn clone(&self) -> QuotaGroup
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 QuotaGroup
impl Debug for QuotaGroup
Source§impl<'de> Deserialize<'de> for QuotaGroup
impl<'de> Deserialize<'de> for QuotaGroup
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 FromResponse for QuotaGroup
impl FromResponse for QuotaGroup
fn from_response( response: ApiResponse, has_body: bool, ) -> Result<Self, StructureError>
Source§impl PartialEq for QuotaGroup
impl PartialEq for QuotaGroup
Source§impl Serialize for QuotaGroup
impl Serialize for QuotaGroup
impl StructuralPartialEq for QuotaGroup
Auto Trait Implementations§
impl Freeze for QuotaGroup
impl RefUnwindSafe for QuotaGroup
impl Send for QuotaGroup
impl Sync for QuotaGroup
impl Unpin for QuotaGroup
impl UnwindSafe for QuotaGroup
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