pub enum EventStatusBit {
OperationComplete = 0,
RequestControl = 1,
QueryError = 2,
DeviceDependantError = 3,
ExecutionError = 4,
CommandError = 5,
UserRequest = 6,
PowerOn = 7,
}Expand description
Event status/enable register bits
Variants§
OperationComplete = 0
Operation complete
RequestControl = 1
Request control
QueryError = 2
Query error
DeviceDependantError = 3
Device dependant error
ExecutionError = 4
Execution error
CommandError = 5
Command error
UserRequest = 6
User request
PowerOn = 7
Power on
Implementations§
Trait Implementations§
Source§impl Clone for EventStatusBit
impl Clone for EventStatusBit
Source§fn clone(&self) -> EventStatusBit
fn clone(&self) -> EventStatusBit
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 EventStatusBit
Auto Trait Implementations§
impl Freeze for EventStatusBit
impl RefUnwindSafe for EventStatusBit
impl Send for EventStatusBit
impl Sync for EventStatusBit
impl Unpin for EventStatusBit
impl UnsafeUnpin for EventStatusBit
impl UnwindSafe for EventStatusBit
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