pub enum LEDState {
On,
Off,
Unspecified(String),
}Variants§
On
Off
Unspecified(String)
Allows passing a value that was not known at the time that this crate was generated from the available device descriptions
Trait Implementations§
impl Eq for LEDState
impl StructuralPartialEq for LEDState
Auto Trait Implementations§
impl Freeze for LEDState
impl RefUnwindSafe for LEDState
impl Send for LEDState
impl Sync for LEDState
impl Unpin for LEDState
impl UnwindSafe for LEDState
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