pub trait Multiplexer {
type Error: Debug + MaybeFormat;
// Required method
async fn select(&mut self, channel: u8) -> Result<(), Self::Error>;
}Expand description
Analog multiplexer driver interface.
Required Associated Types§
Required Methods§
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.
RKTK API Docs