#[repr(u8)]pub enum SeqStat {
NO_DATA_PIN_CONN = 0,
DATA_PIN_CONN = 1,
CP_DET_DONE = 2,
CT_DET_DONE = 3,
}Variants§
NO_DATA_PIN_CONN = 0
The module is either not enabled, or the module is enabled but the data pins have not yet been detected.
DATA_PIN_CONN = 1
Data pin contact detection is complete.
CP_DET_DONE = 2
Charging port detection is complete.
CT_DET_DONE = 3
Charger type detection is complete.
Implementations§
Trait Implementations§
Source§impl Ord for SeqStat
impl Ord for SeqStat
Source§impl PartialOrd for SeqStat
impl PartialOrd for SeqStat
impl Copy for SeqStat
impl Eq for SeqStat
impl StructuralPartialEq for SeqStat
Auto Trait Implementations§
impl Freeze for SeqStat
impl RefUnwindSafe for SeqStat
impl Send for SeqStat
impl Sync for SeqStat
impl Unpin for SeqStat
impl UnwindSafe for SeqStat
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