pub struct DesiredTenant {
pub tenant_id: String,
pub network: DesiredTenantNetwork,
pub quotas: TenantQuota,
pub secrets_hash: Option<String>,
pub pools: Vec<DesiredPool>,
}Fields§
§tenant_id: String§network: DesiredTenantNetwork§quotas: TenantQuota§secrets_hash: Option<String>§pools: Vec<DesiredPool>Trait Implementations§
Source§impl Clone for DesiredTenant
impl Clone for DesiredTenant
Source§fn clone(&self) -> DesiredTenant
fn clone(&self) -> DesiredTenant
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 DesiredTenant
impl Debug for DesiredTenant
Source§impl<'de> Deserialize<'de> for DesiredTenant
impl<'de> Deserialize<'de> for DesiredTenant
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 DesiredTenant
impl RefUnwindSafe for DesiredTenant
impl Send for DesiredTenant
impl Sync for DesiredTenant
impl Unpin for DesiredTenant
impl UnsafeUnpin for DesiredTenant
impl UnwindSafe for DesiredTenant
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