pub struct CommandDef {
pub name: String,
pub description: Option<String>,
pub content: String,
pub allowed_tools: Vec<String>,
pub model: Option<String>,
}Expand description
Single command definition (from a Markdown file + frontmatter).
Fields§
§name: StringCommand name (from filename or frontmatter); may be namespaced e.g. plugin:cmd.
description: Option<String>§content: StringBody content (Markdown) after frontmatter; may contain $ARGUMENTS, $1, $2.
allowed_tools: Vec<String>Allowed tools for this command (optional restriction).
model: Option<String>Model override (optional).
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 moreSource§impl Debug for CommandDef
impl Debug for CommandDef
Source§impl<'de> Deserialize<'de> for CommandDef
impl<'de> Deserialize<'de> for CommandDef
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CommandDef
impl RefUnwindSafe for CommandDef
impl Send for CommandDef
impl Sync for CommandDef
impl Unpin for CommandDef
impl UnsafeUnpin 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