pub struct SetQuotaResponse {
pub success: bool,
pub namespace: String,
pub config: QuotaConfig,
pub message: String,
}Expand description
Response from PUT /admin/quotas.
Fields§
§success: bool§namespace: String§config: QuotaConfig§message: StringTrait Implementations§
Source§impl Clone for SetQuotaResponse
impl Clone for SetQuotaResponse
Source§fn clone(&self) -> SetQuotaResponse
fn clone(&self) -> SetQuotaResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SetQuotaResponse
impl Debug for SetQuotaResponse
Source§impl<'de> Deserialize<'de> for SetQuotaResponse
impl<'de> Deserialize<'de> for SetQuotaResponse
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 SetQuotaResponse
impl RefUnwindSafe for SetQuotaResponse
impl Send for SetQuotaResponse
impl Sync for SetQuotaResponse
impl Unpin for SetQuotaResponse
impl UnsafeUnpin for SetQuotaResponse
impl UnwindSafe for SetQuotaResponse
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