pub enum IdentifyTypeEnum {
None,
LightOutput,
VisibleIndicator,
AudibleBeep,
Display,
Actuator,
Unknown(u8),
}Expand description
IdentifyTypeEnum (enum8).
Variants§
None
None = 0.
LightOutput
LightOutput = 1.
VisibleIndicator
VisibleIndicator = 2.
AudibleBeep
AudibleBeep = 3.
Display
Display = 4.
Actuator
Actuator = 5.
Unknown(u8)
A value not known to this codegen revision.
Implementations§
Trait Implementations§
Source§impl Clone for IdentifyTypeEnum
impl Clone for IdentifyTypeEnum
Source§fn clone(&self) -> IdentifyTypeEnum
fn clone(&self) -> IdentifyTypeEnum
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for IdentifyTypeEnum
Source§impl Debug for IdentifyTypeEnum
impl Debug for IdentifyTypeEnum
impl Eq for IdentifyTypeEnum
Source§impl PartialEq for IdentifyTypeEnum
impl PartialEq for IdentifyTypeEnum
impl StructuralPartialEq for IdentifyTypeEnum
Auto Trait Implementations§
impl Freeze for IdentifyTypeEnum
impl RefUnwindSafe for IdentifyTypeEnum
impl Send for IdentifyTypeEnum
impl Sync for IdentifyTypeEnum
impl Unpin for IdentifyTypeEnum
impl UnsafeUnpin for IdentifyTypeEnum
impl UnwindSafe for IdentifyTypeEnum
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