pub struct ReactivePowerParams<CustomDataType = NoCustomData> {
pub autonomous_v_ref_enable: Option<bool>,
pub autonomous_v_ref_time_constant: Option<f64>,
pub custom_data: Option<CustomDataType>,
pub v_ref: Option<f64>,
}Fields§
§autonomous_v_ref_enable: Option<bool>Only for VoltVar: Enable/disable autonomous VRef adjustment
autonomous_v_ref_time_constant: Option<f64>Only for VoltVar: Adjustment range for VRef time constant
custom_data: Option<CustomDataType>§v_ref: Option<f64>Only for VoltVar curve: The nominal ac voltage (rms) adjustment to the voltage curve points for Volt-Var curves (percentage).
Trait Implementations§
Source§impl<CustomDataType: Clone> Clone for ReactivePowerParams<CustomDataType>
impl<CustomDataType: Clone> Clone for ReactivePowerParams<CustomDataType>
Source§fn clone(&self) -> ReactivePowerParams<CustomDataType>
fn clone(&self) -> ReactivePowerParams<CustomDataType>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<CustomDataType: Debug> Debug for ReactivePowerParams<CustomDataType>
impl<CustomDataType: Debug> Debug for ReactivePowerParams<CustomDataType>
Source§impl<'de, CustomDataType> Deserialize<'de> for ReactivePowerParams<CustomDataType>where
CustomDataType: Deserialize<'de>,
impl<'de, CustomDataType> Deserialize<'de> for ReactivePowerParams<CustomDataType>where
CustomDataType: Deserialize<'de>,
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<CustomDataType: PartialEq> PartialEq for ReactivePowerParams<CustomDataType>
impl<CustomDataType: PartialEq> PartialEq for ReactivePowerParams<CustomDataType>
Source§impl<CustomDataType> Serialize for ReactivePowerParams<CustomDataType>where
CustomDataType: Serialize,
impl<CustomDataType> Serialize for ReactivePowerParams<CustomDataType>where
CustomDataType: Serialize,
impl<CustomDataType: PartialEq> StructuralPartialEq for ReactivePowerParams<CustomDataType>
Source§impl<CustomDataType> Validate for ReactivePowerParams<CustomDataType>
Available on crate feature validate only.
impl<CustomDataType> Validate for ReactivePowerParams<CustomDataType>
Available on crate feature
validate only.Auto Trait Implementations§
impl<CustomDataType> Freeze for ReactivePowerParams<CustomDataType>where
CustomDataType: Freeze,
impl<CustomDataType> RefUnwindSafe for ReactivePowerParams<CustomDataType>where
CustomDataType: RefUnwindSafe,
impl<CustomDataType> Send for ReactivePowerParams<CustomDataType>where
CustomDataType: Send,
impl<CustomDataType> Sync for ReactivePowerParams<CustomDataType>where
CustomDataType: Sync,
impl<CustomDataType> Unpin for ReactivePowerParams<CustomDataType>where
CustomDataType: Unpin,
impl<CustomDataType> UnsafeUnpin for ReactivePowerParams<CustomDataType>where
CustomDataType: UnsafeUnpin,
impl<CustomDataType> UnwindSafe for ReactivePowerParams<CustomDataType>where
CustomDataType: UnwindSafe,
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