pub trait AdcChannel<H, ADC: AdcOps<H>> {
    // Required method
    fn channel(&self) -> ADC::Channel;
}
Expand description

Trait marking a type as an ADC channel for a certain ADC.

Required Methods§

source

fn channel(&self) -> ADC::Channel

Implementors§

source§

impl<H, ADC: AdcOps<H>> AdcChannel<H, ADC> for Channel<H, ADC>