pub enum LccHvdcControlMode {
Blocked = 0,
PowerControl = 1,
CurrentControl = 2,
}Expand description
Control mode for a two-terminal LCC-HVDC link.
Variants§
Blocked = 0
Line is blocked (out of service).
PowerControl = 1
Power control: SETVL is scheduled MW.
CurrentControl = 2
Current control: SETVL is scheduled kA.
Implementations§
Trait Implementations§
Source§impl Clone for LccHvdcControlMode
impl Clone for LccHvdcControlMode
Source§fn clone(&self) -> LccHvdcControlMode
fn clone(&self) -> LccHvdcControlMode
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 LccHvdcControlMode
impl Debug for LccHvdcControlMode
Source§impl Default for LccHvdcControlMode
impl Default for LccHvdcControlMode
Source§fn default() -> LccHvdcControlMode
fn default() -> LccHvdcControlMode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LccHvdcControlMode
impl<'de> Deserialize<'de> for LccHvdcControlMode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LccHvdcControlMode
impl PartialEq for LccHvdcControlMode
Source§impl Serialize for LccHvdcControlMode
impl Serialize for LccHvdcControlMode
impl Copy for LccHvdcControlMode
impl Eq for LccHvdcControlMode
impl StructuralPartialEq for LccHvdcControlMode
Auto Trait Implementations§
impl Freeze for LccHvdcControlMode
impl RefUnwindSafe for LccHvdcControlMode
impl Send for LccHvdcControlMode
impl Sync for LccHvdcControlMode
impl Unpin for LccHvdcControlMode
impl UnsafeUnpin for LccHvdcControlMode
impl UnwindSafe for LccHvdcControlMode
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