pub struct ManagedInstanceFamilyCapability {
pub name: Option<String>,
pub sku: Option<String>,
pub zone_redundant: Option<bool>,
pub supported_license_types: Vec<LicenseTypeCapability>,
pub supported_vcores_values: Vec<ManagedInstanceVcoresCapability>,
pub status: Option<Status>,
pub reason: Option<String>,
}Expand description
The managed server family capability.
Fields§
§name: Option<String>Family name.
sku: Option<String>SKU name.
zone_redundant: Option<bool>Whether or not zone redundancy is supported for the family.
supported_license_types: Vec<LicenseTypeCapability>List of supported license types.
supported_vcores_values: Vec<ManagedInstanceVcoresCapability>List of supported virtual cores values.
status: Option<Status>The status of the capability.
reason: Option<String>The reason for the capability not being available.
Implementations§
Trait Implementations§
Source§impl Clone for ManagedInstanceFamilyCapability
impl Clone for ManagedInstanceFamilyCapability
Source§fn clone(&self) -> ManagedInstanceFamilyCapability
fn clone(&self) -> ManagedInstanceFamilyCapability
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 Default for ManagedInstanceFamilyCapability
impl Default for ManagedInstanceFamilyCapability
Source§fn default() -> ManagedInstanceFamilyCapability
fn default() -> ManagedInstanceFamilyCapability
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ManagedInstanceFamilyCapability
impl<'de> Deserialize<'de> for ManagedInstanceFamilyCapability
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 ManagedInstanceFamilyCapability
impl PartialEq for ManagedInstanceFamilyCapability
Source§fn eq(&self, other: &ManagedInstanceFamilyCapability) -> bool
fn eq(&self, other: &ManagedInstanceFamilyCapability) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ManagedInstanceFamilyCapability
Auto Trait Implementations§
impl Freeze for ManagedInstanceFamilyCapability
impl RefUnwindSafe for ManagedInstanceFamilyCapability
impl Send for ManagedInstanceFamilyCapability
impl Sync for ManagedInstanceFamilyCapability
impl Unpin for ManagedInstanceFamilyCapability
impl UnwindSafe for ManagedInstanceFamilyCapability
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