pub struct ZigbeeZc05m {
    pub brightness: f64,
    pub color_temp: f64,
    pub color_temp_startup: f64,
    pub linkquality: f64,
    pub power_on_behavior: ZigbeeZc05mPoweronbehavior,
    pub state: bool,
    pub last_seen: Option<LastSeen>,
    pub elapsed: Option<u64>,
}
Expand description

gidealed:ZC05M 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: ZigbeeZc05mPoweronbehavior

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 ZigbeeZc05m

source§

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§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,