pub trait Channel {
type Channel: Debug;
type Error: Debug;
// Required method
fn set_channel(
&mut self,
channel: &Self::Channel,
) -> Result<(), Self::Error>;
}Expand description
Channel trait for configuring radio channelization