pub trait InvokeReply {
// Required method
fn with_command(self, cmd: u32) -> Result<impl Reply, Error>;
}Expand description
A trait for encoding the result from a command invoke operation.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".