pub trait Nop<T> {
// Required method
fn nop() -> T;
}
Expand description
Commands that can instantiate as a no-op should implement this.
Required Methods§
Object Safety§
This trait is not object safe.
pub trait Nop<T> {
// Required method
fn nop() -> T;
}
Commands that can instantiate as a no-op should implement this.