pub trait OsiSingleValueAcseWriter: Send {
// Required methods
fn send(
&mut self,
data: Vec<u8>,
) -> impl Future<Output = Result<(), AcseError>> + Send;
fn continue_send(
&mut self,
) -> impl Future<Output = Result<(), AcseError>> + Send;
}Required Methods§
fn send( &mut self, data: Vec<u8>, ) -> impl Future<Output = Result<(), AcseError>> + Send
fn continue_send( &mut self, ) -> impl Future<Output = Result<(), AcseError>> + 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.