pub struct AgentCommand {
pub command: String,
pub description: String,
pub safety: CommandSafety,
}Expand description
Single command documented for coding agents.
Fields§
§command: StringCanonical CLI invocation.
description: StringPurpose of the command.
safety: CommandSafetySafety category.
Trait Implementations§
Source§impl Clone for AgentCommand
impl Clone for AgentCommand
Source§fn clone(&self) -> AgentCommand
fn clone(&self) -> AgentCommand
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 AgentCommand
impl Debug for AgentCommand
Auto Trait Implementations§
impl Freeze for AgentCommand
impl RefUnwindSafe for AgentCommand
impl Send for AgentCommand
impl Sync for AgentCommand
impl Unpin for AgentCommand
impl UnsafeUnpin for AgentCommand
impl UnwindSafe for AgentCommand
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