#[repr(u8)]pub enum GrammeterStateE {
Reset = 0,
Sync = 1,
Ready = 2,
SyncFail = 3,
}Expand description
Grammeter State
Indicates the state of the cardinal grammeter
Variants§
Reset = 0
Grammeter is in reset state and not ready to be used.
Sync = 1
Automatic synchronization in progress.
Ready = 2
Grammeter has successfully synchronized with the stator
SyncFail = 3
Synchronization error!
It is likely that the differential girdlespring is not on the ‘up’ position.
Implementations§
Trait Implementations§
Source§impl Clone for GrammeterStateE
impl Clone for GrammeterStateE
Source§fn clone(&self) -> GrammeterStateE
fn clone(&self) -> GrammeterStateE
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 GrammeterStateE
impl Debug for GrammeterStateE
Source§impl PartialEq for GrammeterStateE
impl PartialEq for GrammeterStateE
impl Copy for GrammeterStateE
impl Eq for GrammeterStateE
impl StructuralPartialEq for GrammeterStateE
Auto Trait Implementations§
impl Freeze for GrammeterStateE
impl RefUnwindSafe for GrammeterStateE
impl Send for GrammeterStateE
impl Sync for GrammeterStateE
impl Unpin for GrammeterStateE
impl UnwindSafe for GrammeterStateE
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