Struct redfish_codegen::models::control::v1_2_0::ControlLoop
source · pub struct ControlLoop {
pub coefficient_update_time: Option<String>,
pub differential: Option<f64>,
pub integral: Option<f64>,
pub proportional: Option<f64>,
}
Expand description
The details and coefficients used to operate a control loop.
Fields§
§coefficient_update_time: Option<String>
The date and time that the control loop coefficients were changed.
differential: Option<f64>
The differential coefficient.
integral: Option<f64>
The integral coefficient.
proportional: Option<f64>
The proportional coefficient.
Trait Implementations§
source§impl Clone for ControlLoop
impl Clone for ControlLoop
source§fn clone(&self) -> ControlLoop
fn clone(&self) -> ControlLoop
Returns a copy 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 ControlLoop
impl Debug for ControlLoop
source§impl Default for ControlLoop
impl Default for ControlLoop
source§fn default() -> ControlLoop
fn default() -> ControlLoop
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ControlLoop
impl<'de> Deserialize<'de> for ControlLoop
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