pub trait TxChannelAsync: TxChannelInternal {
// Provided method
async fn transmit(&mut self, data: &[u32]) -> Result<(), Error>
where Self: Sized { ... }
}
Available on crate feature
unstable
only.Expand description
TX channel in async mode
Provided 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.