pub trait AsyncEngineUnary<Resp: Data>:
Future<Output = Resp>
+ AsyncEngineContextProvider
+ Send { }Expand description
A unary (single-response) asynchronous engine operation.
This trait combines Future semantics with context provider capabilities,
representing a single async operation that produces one result.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".