Skip to main content

DerEnterService

Struct DerEnterService 

Source
pub struct DerEnterService {
    pub es: Option<Es>,
    pub esv_hi: Option<u16>,
    pub esv_lo: Option<u16>,
    pub es_hz_hi: Option<u32>,
    pub es_hz_lo: Option<u32>,
    pub es_dly_tms: Option<u32>,
    pub es_rnd_tms: Option<u32>,
    pub es_rmp_tms: Option<u32>,
    pub es_dly_rem_tms: Option<u32>,
    pub v_sf: Option<i16>,
    pub hz_sf: Option<i16>,
}
Available on crate feature model703 only.
Expand description

Enter Service

Enter service model.

Fields§

§es: Option<Es>

Permit Enter Service

Permit enter service.

§esv_hi: Option<u16>

Enter Service Voltage High

Enter service voltage high threshold as percent of normal voltage.

§esv_lo: Option<u16>

Enter Service Voltage Low

Enter service voltage low threshold as percent of normal voltage.

§es_hz_hi: Option<u32>

Enter Service Frequency High

Enter service frequency high threshold.

§es_hz_lo: Option<u32>

Enter Service Frequency Low

Enter service frequency low threshold.

§es_dly_tms: Option<u32>

Enter Service Delay Time

Enter service delay time in seconds.

§es_rnd_tms: Option<u32>

Enter Service Random Delay

Enter service random delay in seconds.

§es_rmp_tms: Option<u32>

Enter Service Ramp Time

Enter service ramp time in seconds.

§es_dly_rem_tms: Option<u32>

Enter Service Delay Remaining

Enter service delay time remaining in seconds.

§v_sf: Option<i16>

Voltage Scale Factor

Voltage percentage scale factor.

§hz_sf: Option<i16>

Frequency Scale Factor

Frequency scale factor.

Implementations§

Source§

impl DerEnterService

Source

pub const ES: Point<Self, Option<Es>>

Source

pub const ESV_HI: Point<Self, Option<u16>>

Source

pub const ESV_LO: Point<Self, Option<u16>>

Source

pub const ES_HZ_HI: Point<Self, Option<u32>>

Source

pub const ES_HZ_LO: Point<Self, Option<u32>>

Source

pub const ES_DLY_TMS: Point<Self, Option<u32>>

Source

pub const ES_RND_TMS: Point<Self, Option<u32>>

Source

pub const ES_RMP_TMS: Point<Self, Option<u32>>

Source

pub const ES_DLY_REM_TMS: Point<Self, Option<u32>>

Source

pub const V_SF: Point<Self, Option<i16>>

Source

pub const HZ_SF: Point<Self, Option<i16>>

Trait Implementations§

Source§

impl Debug for DerEnterService

Source§

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

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

impl Group for DerEnterService

Source§

const LEN: u16 = 17

Group length (without nested and repeating groups)
Source§

impl Model for DerEnterService

Source§

const ID: u16 = 703

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.