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 duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const 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§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
Source§impl Metadata<'static> for ControlLoop
impl Metadata<'static> for ControlLoop
Source§const JSON_SCHEMA: &'static str = "Control.v1_3_0.json"
const JSON_SCHEMA: &'static str = "Control.v1_3_0.json"
Name of the json-schema file that describes the entity that implements this trait. Should
be only the file name, so that it can be resolved relative to the URL of the redfish
service, or the public Redfish schema index.
Auto Trait Implementations§
impl Freeze for ControlLoop
impl RefUnwindSafe for ControlLoop
impl Send for ControlLoop
impl Sync for ControlLoop
impl Unpin for ControlLoop
impl UnwindSafe for ControlLoop
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