pub enum AdcChannel {
AnalogInput0 = 1,
AnalogInput1 = 2,
AnalogInput2 = 3,
AnalogInput3 = 4,
AnalogInput4 = 5,
AnalogInput5 = 6,
AnalogInput6 = 7,
AnalogInput7 = 8,
VDD = 9,
VDDHDIV5 = 13,
}
Variants§
AnalogInput0 = 1
AnalogInput1 = 2
AnalogInput2 = 3
AnalogInput3 = 4
AnalogInput4 = 5
AnalogInput5 = 6
AnalogInput6 = 7
AnalogInput7 = 8
VDD = 9
VDDHDIV5 = 13
Trait Implementations§
Source§impl Clone for AdcChannel
impl Clone for AdcChannel
Source§fn clone(&self) -> AdcChannel
fn clone(&self) -> AdcChannel
Returns a copy 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 AdcChannel
impl Debug for AdcChannel
Source§impl PartialEq for AdcChannel
impl PartialEq for AdcChannel
impl Copy for AdcChannel
impl StructuralPartialEq for AdcChannel
Auto Trait Implementations§
impl Freeze for AdcChannel
impl RefUnwindSafe for AdcChannel
impl Send for AdcChannel
impl Sync for AdcChannel
impl Unpin for AdcChannel
impl UnwindSafe for AdcChannel
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