pub enum LampOnMode {
OffMode,
DmxMode,
OnMode,
AfterCal,
ManufacturerSpecific(u8),
}
Variants§
Trait Implementations§
Source§impl Clone for LampOnMode
impl Clone for LampOnMode
Source§fn clone(&self) -> LampOnMode
fn clone(&self) -> LampOnMode
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 LampOnMode
impl Debug for LampOnMode
Source§impl From<LampOnMode> for u8
impl From<LampOnMode> for u8
Source§fn from(value: LampOnMode) -> u8
fn from(value: LampOnMode) -> u8
Converts to this type from the input type.
Source§impl PartialEq for LampOnMode
impl PartialEq for LampOnMode
Source§impl TryFrom<u8> for LampOnMode
impl TryFrom<u8> for LampOnMode
impl Copy for LampOnMode
impl StructuralPartialEq for LampOnMode
Auto Trait Implementations§
impl Freeze for LampOnMode
impl RefUnwindSafe for LampOnMode
impl Send for LampOnMode
impl Sync for LampOnMode
impl Unpin for LampOnMode
impl UnwindSafe for LampOnMode
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