pub struct CommandDef {
pub name: String,
pub description: String,
pub usage: Option<String>,
pub args: Vec<ArgDef>,
}Expand description
Metadata about a plugin command
Fields§
§name: StringCommand name (e.g., “start”, “status”)
description: StringShort description shown in help
usage: Option<String>Usage string (e.g., “
args: Vec<ArgDef>Argument definitions for help text
Implementations§
Trait Implementations§
Source§impl Clone for CommandDef
impl Clone for CommandDef
Source§fn clone(&self) -> CommandDef
fn clone(&self) -> CommandDef
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CommandDef
impl RefUnwindSafe for CommandDef
impl Send for CommandDef
impl Sync for CommandDef
impl Unpin for CommandDef
impl UnwindSafe for CommandDef
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more