pub trait CommandNameExt {
// Required methods
fn name(self) -> Box<dyn VarBoxed<Txt>>;
fn init_name(self, name: impl Into<Txt>) -> Self;
fn name_with_shortcut(self) -> Box<dyn VarBoxed<Txt>>
where Self: CommandShortcutExt;
}
Expand description
Adds the name
command metadata.
Required Methods§
Sourcefn name(self) -> Box<dyn VarBoxed<Txt>>
fn name(self) -> Box<dyn VarBoxed<Txt>>
Gets a read-write variable that is the display name for the command.
Sourcefn name_with_shortcut(self) -> Box<dyn VarBoxed<Txt>>where
Self: CommandShortcutExt,
fn name_with_shortcut(self) -> Box<dyn VarBoxed<Txt>>where
Self: CommandShortcutExt,
Gets a read-only variable that formats the name and first shortcut in the following format: name (first_shortcut)
Note: If no shortcuts are available this method returns the same as name
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.