pub trait RxChannelAsync {
// Required method
async fn receive<T: From<u32> + Copy>(
&mut self,
data: &mut [T],
) -> Result<(), Error>
where Self: Sized;
}
Available on crate feature
unstable
only.Expand description
RX channel in async mode