pub struct QuotaEntry {
pub entity_type: String,
pub entity_name: Option<String>,
pub quotas: HashMap<String, u64>,
}Expand description
Quota entry in describe response
Fields§
§entity_type: StringEntity type
entity_name: Option<String>Entity name (None for defaults)
quotas: HashMap<String, u64>Quota values
Trait Implementations§
Source§impl Clone for QuotaEntry
impl Clone for QuotaEntry
Source§fn clone(&self) -> QuotaEntry
fn clone(&self) -> QuotaEntry
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 QuotaEntry
impl Debug for QuotaEntry
Source§impl<'de> Deserialize<'de> for QuotaEntry
impl<'de> Deserialize<'de> for QuotaEntry
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 QuotaEntry
impl RefUnwindSafe for QuotaEntry
impl Send for QuotaEntry
impl Sync for QuotaEntry
impl Unpin for QuotaEntry
impl UnwindSafe for QuotaEntry
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