Struct houseflow_types::Device [−][src]
pub struct Device {
pub id: DeviceID,
pub password_hash: String,
pub device_type: DeviceType,
pub traits: Vec<DeviceTrait>,
pub name: String,
pub will_push_state: bool,
pub room: Option<String>,
pub model: String,
pub hw_version: Version,
pub sw_version: Version,
pub attributes: HashMap<String, Option<String>>,
}Fields
id: DeviceIDIdentifier of the device
password_hash: StringHashed password for device
device_type: DeviceTypeType of the device
traits: Vec<DeviceTrait>Functionatily that the device has
name: StringName of the device
will_push_state: boolTrue if device will push state by itself, otherwise will use polling
room: Option<String>Name of room(if available)
model: StringThe model or SKU identifier of the device
hw_version: VersionSpecific version number of hardware of the device
sw_version: VersionSpecific version number of software of the device
attributes: HashMap<String, Option<String>>Aligned with per-trait attributes described in each trait schema reference.
Trait Implementations
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 RefUnwindSafe for Deviceimpl UnwindSafe for DeviceBlanket Implementations
Mutably borrows from an owned value. Read more
pub fn vzip(self) -> V