pub enum StatusType {
Chain = 0,
AppStart = 1,
Pcbsn = 2,
SensorRead = 3,
SensorWrite = 4,
SettingsRead = 5,
SettingsWrite = 6,
Calibration = 7,
CalibrationPoints = 8,
CalibrationStored = 9,
CalibrationInfo = 10,
LedToggle = 11,
}Expand description
Status query type (see Device::status).
Variants§
Chain = 0
Chain identification status.
AppStart = 1
Application firmware start status.
Pcbsn = 2
PCB serial number read status.
SensorRead = 3
Sensor read status.
SensorWrite = 4
Sensor write status.
SettingsRead = 5
Settings read status.
SettingsWrite = 6
Settings write status.
Calibration = 7
Calibration write status.
CalibrationPoints = 8
Calibration points write status.
CalibrationStored = 9
Calibration stored status.
CalibrationInfo = 10
Calibration info status.
LedToggle = 11
LED toggle status.
Implementations§
Trait Implementations§
Source§impl Clone for StatusType
impl Clone for StatusType
Source§fn clone(&self) -> StatusType
fn clone(&self) -> StatusType
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 moreSource§impl Debug for StatusType
impl Debug for StatusType
Source§impl PartialEq for StatusType
impl PartialEq for StatusType
Source§fn eq(&self, other: &StatusType) -> bool
fn eq(&self, other: &StatusType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for StatusType
impl Eq for StatusType
impl StructuralPartialEq for StatusType
Auto Trait Implementations§
impl Freeze for StatusType
impl RefUnwindSafe for StatusType
impl Send for StatusType
impl Sync for StatusType
impl Unpin for StatusType
impl UnsafeUnpin for StatusType
impl UnwindSafe for StatusType
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