pub struct UpdateTenantPlanResponse {
pub tenant_id: String,
pub plan: String,
pub quotas: TenantQuotas,
}Expand description
UpdateTenantPlanResponse model.
Fields§
§tenant_id: String§plan: StringThe RESOLVED plan id, which may differ in case from what was sent.
quotas: TenantQuotasTrait Implementations§
Source§impl Clone for UpdateTenantPlanResponse
impl Clone for UpdateTenantPlanResponse
Source§fn clone(&self) -> UpdateTenantPlanResponse
fn clone(&self) -> UpdateTenantPlanResponse
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 UpdateTenantPlanResponse
impl Debug for UpdateTenantPlanResponse
Source§impl Default for UpdateTenantPlanResponse
impl Default for UpdateTenantPlanResponse
Source§fn default() -> UpdateTenantPlanResponse
fn default() -> UpdateTenantPlanResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateTenantPlanResponse
impl<'de> Deserialize<'de> for UpdateTenantPlanResponse
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 PartialEq for UpdateTenantPlanResponse
impl PartialEq for UpdateTenantPlanResponse
Source§impl Serialize for UpdateTenantPlanResponse
impl Serialize for UpdateTenantPlanResponse
impl StructuralPartialEq for UpdateTenantPlanResponse
Auto Trait Implementations§
impl Freeze for UpdateTenantPlanResponse
impl RefUnwindSafe for UpdateTenantPlanResponse
impl Send for UpdateTenantPlanResponse
impl Sync for UpdateTenantPlanResponse
impl Unpin for UpdateTenantPlanResponse
impl UnsafeUnpin for UpdateTenantPlanResponse
impl UnwindSafe for UpdateTenantPlanResponse
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