pub trait IController: Send + Sync {
// Required method
fn call(
&self,
tt: u8,
cmd_tag: i32,
dr: DataOwnedReader,
) -> impl Future<Output = Result<RetResult>> + Send;
}
Expand description
Trait representing a controller that can handle calls.
Required 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.