#[repr(u8)]pub enum AdcActive {
NOT_ACTIVE = 0,
BUSY = 1,
}Variants§
NOT_ACTIVE = 0
ADC is idle. There are no pending triggers to service and no active commands are being processed.
BUSY = 1
ADC is processing a conversion, running through the power-up delay, or servicing a trigger.
Implementations§
Trait Implementations§
Source§impl Ord for AdcActive
impl Ord for AdcActive
Source§impl PartialOrd for AdcActive
impl PartialOrd for AdcActive
impl Copy for AdcActive
impl Eq for AdcActive
impl StructuralPartialEq for AdcActive
Auto Trait Implementations§
impl Freeze for AdcActive
impl RefUnwindSafe for AdcActive
impl Send for AdcActive
impl Sync for AdcActive
impl Unpin for AdcActive
impl UnwindSafe for AdcActive
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