pub struct QuotaListResponse {
pub quotas: Vec<QuotaStatus>,
pub total: u64,
pub default_config: Option<QuotaConfig>,
}Expand description
Quota list response
Fields§
§quotas: Vec<QuotaStatus>§total: u64§default_config: Option<QuotaConfig>Trait Implementations§
Source§impl Clone for QuotaListResponse
impl Clone for QuotaListResponse
Source§fn clone(&self) -> QuotaListResponse
fn clone(&self) -> QuotaListResponse
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 QuotaListResponse
impl Debug for QuotaListResponse
Source§impl<'de> Deserialize<'de> for QuotaListResponse
impl<'de> Deserialize<'de> for QuotaListResponse
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 QuotaListResponse
impl RefUnwindSafe for QuotaListResponse
impl Send for QuotaListResponse
impl Sync for QuotaListResponse
impl Unpin for QuotaListResponse
impl UnsafeUnpin for QuotaListResponse
impl UnwindSafe for QuotaListResponse
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