pub struct AutoscalingModule {
pub cool_down_period_sec: Option<i32>,
pub description: Option<String>,
pub max_num_replicas: Option<i32>,
pub min_num_replicas: Option<i32>,
pub signal_type: Option<String>,
pub target_module: Option<String>,
pub target_utilization: Option<f64>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§cool_down_period_sec: Option<i32>no description provided
description: Option<String>no description provided
max_num_replicas: Option<i32>no description provided
min_num_replicas: Option<i32>no description provided
signal_type: Option<String>no description provided
target_module: Option<String>no description provided
target_utilization: Option<f64>target_utilization should be in range [0,1].
Trait Implementations§
Source§impl Clone for AutoscalingModule
impl Clone for AutoscalingModule
Source§fn clone(&self) -> AutoscalingModule
fn clone(&self) -> AutoscalingModule
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 AutoscalingModule
impl Debug for AutoscalingModule
Source§impl Default for AutoscalingModule
impl Default for AutoscalingModule
Source§fn default() -> AutoscalingModule
fn default() -> AutoscalingModule
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AutoscalingModule
impl<'de> Deserialize<'de> for AutoscalingModule
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 Serialize for AutoscalingModule
impl Serialize for AutoscalingModule
impl Part for AutoscalingModule
Auto Trait Implementations§
impl Freeze for AutoscalingModule
impl RefUnwindSafe for AutoscalingModule
impl Send for AutoscalingModule
impl Sync for AutoscalingModule
impl Unpin for AutoscalingModule
impl UnwindSafe for AutoscalingModule
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