pub struct ZigbeeB07jhl6drv {
pub brightness: f64,
pub color_temp: f64,
pub color_temp_startup: f64,
pub linkquality: f64,
pub power_on_behavior: ZigbeeB07jhl6drvPoweronbehavior,
pub state: bool,
pub last_seen: Option<LastSeen>,
pub elapsed: Option<u64>,
}
Expand description
quotra:B07JHL6DRV zigbee2mqtt link
Fields§
§brightness: f64
Brightness of this light
color_temp: f64
Color temperature of this light
color_temp_startup: f64
Color temperature after cold power on of this light
linkquality: f64
Link quality (signal strength)
power_on_behavior: ZigbeeB07jhl6drvPoweronbehavior
Controls the behavior when the device is powered on after power loss
state: bool
Zigbee herdsman description: “On/off state of this light” The string values get converted into boolean with: ON = true and OFF = false
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 ZigbeeB07jhl6drv
impl<'de> Deserialize<'de> for ZigbeeB07jhl6drv
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 ZigbeeB07jhl6drv
impl RefUnwindSafe for ZigbeeB07jhl6drv
impl Send for ZigbeeB07jhl6drv
impl Sync for ZigbeeB07jhl6drv
impl Unpin for ZigbeeB07jhl6drv
impl UnwindSafe for ZigbeeB07jhl6drv
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