pub enum Phase {
L1,
L2,
L3,
N,
L1N,
L2N,
L3N,
L1L2,
L2L3,
L3L1,
}
Expand description
Phase as used in SampledValue. Phase specifies how a measured value is to be interpreted. Please note that not all values of Phase are applicable to all Measurands.
Variants§
Trait Implementations§
source§impl<'de> Deserialize<'de> for Phase
impl<'de> Deserialize<'de> for Phase
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