pub trait EntityCommand:
Send
+ Sync
+ Debug {
// Required methods
fn kind(&self) -> CommandKind;
fn name(&self) -> &'static str;
}Expand description
Required Methods§
Sourcefn kind(&self) -> CommandKind
fn kind(&self) -> CommandKind
Get the kind of command for categorization.