pub struct DERCurvePoints {
pub custom_data: Option<CustomData>,
pub x: f64,
pub y: f64,
}Fields§
§custom_data: Option<CustomData>§x: f64The data value of the X-axis (independent) variable, depending on the curve type.
y: f64The data value of the Y-axis (dependent) variable, depending on the <<cmn_derunitenumtype>> of the curve. If y is power factor, then a positive value means DER is absorbing reactive power (under-excited), a negative value when DER is injecting reactive power (over-excited).
Trait Implementations§
Source§impl Clone for DERCurvePoints
impl Clone for DERCurvePoints
Source§fn clone(&self) -> DERCurvePoints
fn clone(&self) -> DERCurvePoints
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 Debug for DERCurvePoints
impl Debug for DERCurvePoints
Source§impl PartialEq for DERCurvePoints
impl PartialEq for DERCurvePoints
impl StructuralPartialEq for DERCurvePoints
Auto Trait Implementations§
impl Freeze for DERCurvePoints
impl RefUnwindSafe for DERCurvePoints
impl Send for DERCurvePoints
impl Sync for DERCurvePoints
impl Unpin for DERCurvePoints
impl UnsafeUnpin for DERCurvePoints
impl UnwindSafe for DERCurvePoints
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