pub trait AdcChannel<T>: SealedAdcChannel<T> + Sized {
// Provided method
fn degrade_adc<'a>(self) -> AnyAdcChannel<'a, T>
where Self: 'a { ... }
}Expand description
ADC channel.
Provided Methods§
fn degrade_adc<'a>(self) -> AnyAdcChannel<'a, T>where
Self: 'a,
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.