#[repr(i32)]pub enum DerGeneratorStateKind {
Undefined = 0,
NotOperating = 1,
Operating = 2,
StartingUp = 3,
ShuttingDown = 4,
AtDisconnectLevel = 5,
RampingInPower = 6,
RampingInReactivePower = 7,
Standby = 8,
NotApplicableUnknown = 98,
Other = 99,
}
Expand description
DER operational state (DERGeneratorStateKind)
Variants§
Undefined = 0
Undefined enum value which can be used for Protobuf generation and be consistent with other technologies.
NotOperating = 1
MISSING DOCUMENTATION!!!
Operating = 2
MISSING DOCUMENTATION!!!
StartingUp = 3
MISSING DOCUMENTATION!!!
ShuttingDown = 4
MISSING DOCUMENTATION!!!
AtDisconnectLevel = 5
MISSING DOCUMENTATION!!!
RampingInPower = 6
MISSING DOCUMENTATION!!!
RampingInReactivePower = 7
MISSING DOCUMENTATION!!!
Standby = 8
MISSING DOCUMENTATION!!!
NotApplicableUnknown = 98
MISSING DOCUMENTATION!!!
Other = 99
MISSING DOCUMENTATION!!!
Implementations§
Trait Implementations§
Source§impl Clone for DerGeneratorStateKind
impl Clone for DerGeneratorStateKind
Source§fn clone(&self) -> DerGeneratorStateKind
fn clone(&self) -> DerGeneratorStateKind
Returns a duplicate of the value. Read more
1.0.0 · 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 DerGeneratorStateKind
impl Debug for DerGeneratorStateKind
Source§impl Default for DerGeneratorStateKind
impl Default for DerGeneratorStateKind
Source§fn default() -> DerGeneratorStateKind
fn default() -> DerGeneratorStateKind
Returns the “default value” for a type. Read more
Source§impl From<DerGeneratorStateKind> for i32
impl From<DerGeneratorStateKind> for i32
Source§fn from(value: DerGeneratorStateKind) -> i32
fn from(value: DerGeneratorStateKind) -> i32
Converts to this type from the input type.
Source§impl Hash for DerGeneratorStateKind
impl Hash for DerGeneratorStateKind
Source§impl Ord for DerGeneratorStateKind
impl Ord for DerGeneratorStateKind
Source§fn cmp(&self, other: &DerGeneratorStateKind) -> Ordering
fn cmp(&self, other: &DerGeneratorStateKind) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DerGeneratorStateKind
impl PartialEq for DerGeneratorStateKind
Source§impl PartialOrd for DerGeneratorStateKind
impl PartialOrd for DerGeneratorStateKind
impl Copy for DerGeneratorStateKind
impl Eq for DerGeneratorStateKind
impl StructuralPartialEq for DerGeneratorStateKind
Auto Trait Implementations§
impl Freeze for DerGeneratorStateKind
impl RefUnwindSafe for DerGeneratorStateKind
impl Send for DerGeneratorStateKind
impl Sync for DerGeneratorStateKind
impl Unpin for DerGeneratorStateKind
impl UnwindSafe for DerGeneratorStateKind
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