#[repr(u8)]pub enum AdcResolution {
_8bit = 0,
_10bit = 1,
_12bit = 2,
}Expand description
This enum represents the availabe ADC resolutions
Regardless of resolution chosen, results are always right justified
Variants§
_8bit = 0
8 bit AD conversion mode
_10bit = 1
10 bit AD conversion mode
_12bit = 2
12 bit AD conversion mode
Auto Trait Implementations§
impl Freeze for AdcResolution
impl RefUnwindSafe for AdcResolution
impl Send for AdcResolution
impl Sync for AdcResolution
impl Unpin for AdcResolution
impl UnwindSafe for AdcResolution
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