pub struct QuotaListResponse {
pub quotas: Vec<QuotaStatus>,
pub total: u64,
pub default_config: Option<QuotaConfig>,
}Expand description
Response listing all namespace quotas
Fields§
§quotas: Vec<QuotaStatus>List of quota statuses per namespace
total: u64Total number of namespaces with quotas
default_config: Option<QuotaConfig>Default quota configuration (if set)
Trait Implementations§
Source§impl Debug for QuotaListResponse
impl Debug for QuotaListResponse
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