pub struct ZigbeePpDwhtDus {
pub current: f64,
pub linkquality: f64,
pub power: f64,
pub state: bool,
pub voltage: f64,
pub last_seen: Option<LastSeen>,
pub elapsed: Option<u64>,
}
Expand description
securifi:PP-WHT-US zigbee2mqtt link
Fields§
§current: f64
Instantaneous measured electrical current
linkquality: f64
Link quality (signal strength)
power: f64
Instantaneous measured power
state: bool
Zigbee herdsman description: “On/off state of the switch” The string values get converted into boolean with: ON = true and OFF = false
voltage: f64
Measured electrical potential value
last_seen: Option<LastSeen>
Optional last_seen type, set as a global zigbee2mqtt setting
elapsed: Option<u64>
Optional elapsed type
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ZigbeePpDwhtDus
impl<'de> Deserialize<'de> for ZigbeePpDwhtDus
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
Auto Trait Implementations§
impl Freeze for ZigbeePpDwhtDus
impl RefUnwindSafe for ZigbeePpDwhtDus
impl Send for ZigbeePpDwhtDus
impl Sync for ZigbeePpDwhtDus
impl Unpin for ZigbeePpDwhtDus
impl UnwindSafe for ZigbeePpDwhtDus
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