Skip to main content

DerTripHf

Struct DerTripHf 

Source
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: Ena

DER Trip HF Module Enable

DER high frequency trip control enable.

§adpt_crv_req: u16

Adopt Curve Request

Index of curve points to adopt. First curve index is 1.

§adpt_crv_rslt: AdptCrvRslt

Adopt Curve Result

Result of last adopt curve operation.

§n_pt: u16

Number Of Points

Number of curve points supported.

§n_crv_set: u16

Stored Curve Count

Number of stored curves supported.

§hz_sf: i16

Frequency Scale Factor

Scale factor for curve frequency points.

§tms_sf: i16

Time 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§

Source§

impl DerTripHf

Source

pub const ENA: Point<Self, Ena>

Source

pub const ADPT_CRV_REQ: Point<Self, u16>

Source

pub const ADPT_CRV_RSLT: Point<Self, AdptCrvRslt>

Source

pub const N_PT: Point<Self, u16>

Source

pub const N_CRV_SET: Point<Self, u16>

Source

pub const HZ_SF: Point<Self, i16>

Source

pub const TMS_SF: Point<Self, i16>

Trait Implementations§

Source§

impl Debug for DerTripHf

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Group for DerTripHf

Source§

const LEN: u16 = 7

Group length (without nested and repeating groups)
Source§

impl Model for DerTripHf

Source§

const ID: u16 = 710

Model ID
Source§

fn addr(models: &Models) -> ModelAddr<Self>

Get model address from discovered models struct
Source§

fn parse(data: &[u16]) -> Result<Self, ParseError<Self>>

Parse model data from a given u16 slice

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.