pub trait CanUpdateCommand<Args> {
// Required method
fn update_command(&self, _phantom: PhantomData<Args>, command: &mut Command);
}Required Methods§
fn update_command(&self, _phantom: PhantomData<Args>, command: &mut Command)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".