pub trait CotpWriter: Send {
// Required method
fn send(
&mut self,
input: &mut VecDeque<Vec<u8>>,
) -> impl Future<Output = Result<(), CotpError>> + Send;
}Required Methods§
fn send( &mut self, input: &mut VecDeque<Vec<u8>>, ) -> impl Future<Output = Result<(), CotpError>> + Send
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.