pub enum EngineStarterMode {
StartNotRequested,
StarterActiveGearNotEngaged,
StarterActiveGearEngaged,
StartFinished,
StarterInhibitedEngineRunning,
StarterInhibitedEngineNotReady,
StarterInhibitedTransmissionInhibited,
StarterInhibitedActiveImmobilizer,
StarterInhibitedOverHeat,
StarterInhibitedReasonUnknown,
Error,
Reserved,
}Variants§
StartNotRequested
StarterActiveGearNotEngaged
StarterActiveGearEngaged
StartFinished
StarterInhibitedEngineRunning
StarterInhibitedEngineNotReady
StarterInhibitedTransmissionInhibited
StarterInhibitedActiveImmobilizer
StarterInhibitedOverHeat
StarterInhibitedReasonUnknown
Error
Reserved
Implementations§
Trait Implementations§
Source§impl Clone for EngineStarterMode
impl Clone for EngineStarterMode
Source§fn clone(&self) -> EngineStarterMode
fn clone(&self) -> EngineStarterMode
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 EngineStarterMode
impl Debug for EngineStarterMode
Source§impl PartialEq for EngineStarterMode
impl PartialEq for EngineStarterMode
impl Copy for EngineStarterMode
impl Eq for EngineStarterMode
impl StructuralPartialEq for EngineStarterMode
Auto Trait Implementations§
impl Freeze for EngineStarterMode
impl RefUnwindSafe for EngineStarterMode
impl Send for EngineStarterMode
impl Sync for EngineStarterMode
impl Unpin for EngineStarterMode
impl UnsafeUnpin for EngineStarterMode
impl UnwindSafe for EngineStarterMode
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