pub trait Command {
type Reply;
const CODE: u32;
}Expand description
A managed command: the request type, its wire code, and the reply type the other end answers with.
Required Associated Constants§
Required Associated Types§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".