#[repr(u8)]pub enum IdentifyType {
None = 0,
Lightoutput = 1,
Visibleindicator = 2,
Audiblebeep = 3,
Display = 4,
Actuator = 5,
}Variants§
None = 0
No presentation.
Lightoutput = 1
Light output of a lighting product.
Visibleindicator = 2
Typically a small LED.
Audiblebeep = 3
Display = 4
Presentation will be visible on display screen.
Actuator = 5
Presentation will be conveyed by actuator functionality such as through a window blind operation or in-wall relay.
Implementations§
Trait Implementations§
Source§impl Clone for IdentifyType
impl Clone for IdentifyType
Source§fn clone(&self) -> IdentifyType
fn clone(&self) -> IdentifyType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IdentifyType
impl Debug for IdentifyType
Source§impl<'de> Deserialize<'de> for IdentifyType
impl<'de> Deserialize<'de> for IdentifyType
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
Source§impl From<IdentifyType> for u8
impl From<IdentifyType> for u8
Source§fn from(val: IdentifyType) -> Self
fn from(val: IdentifyType) -> Self
Converts to this type from the input type.
Source§impl PartialEq for IdentifyType
impl PartialEq for IdentifyType
Source§impl Serialize for IdentifyType
impl Serialize for IdentifyType
impl Copy for IdentifyType
impl Eq for IdentifyType
impl StructuralPartialEq for IdentifyType
Auto Trait Implementations§
impl Freeze for IdentifyType
impl RefUnwindSafe for IdentifyType
impl Send for IdentifyType
impl Sync for IdentifyType
impl Unpin for IdentifyType
impl UnwindSafe for IdentifyType
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