pub struct AvailableServiceSku {
pub resource_type: Option<String>,
pub sku: Option<Sku>,
pub capacity: Option<Capacity>,
}
Expand description
Describes the available service SKU.
Fields§
§resource_type: Option<String>
The resource type, including the provider namespace
sku: Option<Sku>
SKU name, tier, etc.
capacity: Option<Capacity>
A description of the scaling capacities of the SKU
Implementations§
Trait Implementations§
Source§impl Clone for AvailableServiceSku
impl Clone for AvailableServiceSku
Source§fn clone(&self) -> AvailableServiceSku
fn clone(&self) -> AvailableServiceSku
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 AvailableServiceSku
impl Debug for AvailableServiceSku
Source§impl Default for AvailableServiceSku
impl Default for AvailableServiceSku
Source§fn default() -> AvailableServiceSku
fn default() -> AvailableServiceSku
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AvailableServiceSku
impl<'de> Deserialize<'de> for AvailableServiceSku
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 AvailableServiceSku
impl PartialEq for AvailableServiceSku
Source§impl Serialize for AvailableServiceSku
impl Serialize for AvailableServiceSku
impl StructuralPartialEq for AvailableServiceSku
Auto Trait Implementations§
impl Freeze for AvailableServiceSku
impl RefUnwindSafe for AvailableServiceSku
impl Send for AvailableServiceSku
impl Sync for AvailableServiceSku
impl Unpin for AvailableServiceSku
impl UnwindSafe for AvailableServiceSku
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