pub struct ResourceSkuCapacity {
pub minimum: Option<i64>,
pub maximum: Option<i64>,
pub default: Option<i64>,
pub scale_type: Option<ScaleType>,
}
Expand description
Describes scaling information of a SKU.
Fields§
§minimum: Option<i64>
The minimum capacity.
maximum: Option<i64>
The maximum capacity.
default: Option<i64>
The default capacity.
scale_type: Option<ScaleType>
The scale type applicable to the SKU.
Implementations§
Trait Implementations§
Source§impl Clone for ResourceSkuCapacity
impl Clone for ResourceSkuCapacity
Source§fn clone(&self) -> ResourceSkuCapacity
fn clone(&self) -> ResourceSkuCapacity
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 ResourceSkuCapacity
impl Debug for ResourceSkuCapacity
Source§impl Default for ResourceSkuCapacity
impl Default for ResourceSkuCapacity
Source§fn default() -> ResourceSkuCapacity
fn default() -> ResourceSkuCapacity
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ResourceSkuCapacity
impl<'de> Deserialize<'de> for ResourceSkuCapacity
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 ResourceSkuCapacity
impl PartialEq for ResourceSkuCapacity
Source§impl Serialize for ResourceSkuCapacity
impl Serialize for ResourceSkuCapacity
impl StructuralPartialEq for ResourceSkuCapacity
Auto Trait Implementations§
impl Freeze for ResourceSkuCapacity
impl RefUnwindSafe for ResourceSkuCapacity
impl Send for ResourceSkuCapacity
impl Sync for ResourceSkuCapacity
impl Unpin for ResourceSkuCapacity
impl UnwindSafe for ResourceSkuCapacity
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