pub struct DerTripHf {
pub ena: Ena,
pub adpt_crv_req: u16,
pub adpt_crv_rslt: AdptCrvRslt,
pub n_pt: u16,
pub n_crv_set: u16,
pub hz_sf: i16,
pub tms_sf: i16,
pub crv: Vec<Crv>,
}Available on crate feature
model710 only.Expand description
DER Trip HF
DER high frequency trip model.
Fields§
§ena: EnaDER Trip HF Module Enable
DER high frequency trip control enable.
adpt_crv_req: u16Adopt Curve Request
Index of curve points to adopt. First curve index is 1.
adpt_crv_rslt: AdptCrvRsltAdopt Curve Result
Result of last adopt curve operation.
n_pt: u16Number Of Points
Number of curve points supported.
n_crv_set: u16Stored Curve Count
Number of stored curves supported.
hz_sf: i16Frequency Scale Factor
Scale factor for curve frequency points.
tms_sf: i16Time Point Scale Factor
Scale factor for curve time points.
crv: Vec<Crv>Stored Curves
Stored curve sets.
Comments: Stored curve sets - Number of curve sets contained in NCrvSet - The first set is read-only and indicates the current settings.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DerTripHf
impl RefUnwindSafe for DerTripHf
impl Send for DerTripHf
impl Sync for DerTripHf
impl Unpin for DerTripHf
impl UnsafeUnpin for DerTripHf
impl UnwindSafe for DerTripHf
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