pub enum PhaseEnum {
L1,
L2,
L3,
N,
L1N,
L2N,
L3N,
L1L2,
L2L3,
L3L1,
}Expand description
Indicates how the measured value is to be interpreted. For instance between L1 and neutral (L1-N) Please note that not all values of phase are applicable to all Measurands. When phase is absent, the measured value is interpreted as an overall value.
Variants§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PhaseEnum
impl<'de> Deserialize<'de> for PhaseEnum
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
impl Eq for PhaseEnum
impl StructuralPartialEq for PhaseEnum
Auto Trait Implementations§
impl Freeze for PhaseEnum
impl RefUnwindSafe for PhaseEnum
impl Send for PhaseEnum
impl Sync for PhaseEnum
impl Unpin for PhaseEnum
impl UnsafeUnpin for PhaseEnum
impl UnwindSafe for PhaseEnum
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