cue_sdk/property/
mod.rs

1//! Int32 and Boolean property structs, for reading various device properties for devices with
2//! property lookup functionality.
3use crate::errors::CueSdkError;
4
5mod boolean;
6mod int32;
7
8#[derive(Debug, Clone, PartialEq, Fail)]
9#[fail(display = "Failed to refresh value, error: {:?}", _0)]
10pub struct RefreshValueError(Option<CueSdkError>);
11
12pub use self::boolean::{BooleanProperty, BooleanPropertyKey};
13pub use self::int32::{Int32Property, Int32PropertyKey};