pub struct AutomationAdoptionSchemaConfig {
pub s_curve_enabled: bool,
pub adoption_midpoint_months: u32,
pub steepness: f64,
}Expand description
Automation adoption configuration.
Fields§
§s_curve_enabled: boolEnable S-curve adoption model.
adoption_midpoint_months: u32Adoption midpoint in months.
steepness: f64Steepness of adoption curve.
Trait Implementations§
Source§impl Clone for AutomationAdoptionSchemaConfig
impl Clone for AutomationAdoptionSchemaConfig
Source§fn clone(&self) -> AutomationAdoptionSchemaConfig
fn clone(&self) -> AutomationAdoptionSchemaConfig
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<'de> Deserialize<'de> for AutomationAdoptionSchemaConfig
impl<'de> Deserialize<'de> for AutomationAdoptionSchemaConfig
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 AutomationAdoptionSchemaConfig
impl RefUnwindSafe for AutomationAdoptionSchemaConfig
impl Send for AutomationAdoptionSchemaConfig
impl Sync for AutomationAdoptionSchemaConfig
impl Unpin for AutomationAdoptionSchemaConfig
impl UnwindSafe for AutomationAdoptionSchemaConfig
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