pub struct AutoModeDefaultsCommand;Expand description
Print the default auto-mode environment, allow, and deny rules as JSON. Useful as a reference when writing custom rules.
Implementations§
Trait Implementations§
Source§impl Clone for AutoModeDefaultsCommand
impl Clone for AutoModeDefaultsCommand
Source§fn clone(&self) -> AutoModeDefaultsCommand
fn clone(&self) -> AutoModeDefaultsCommand
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 AutoModeDefaultsCommand
impl Debug for AutoModeDefaultsCommand
Source§impl Default for AutoModeDefaultsCommand
impl Default for AutoModeDefaultsCommand
Source§fn default() -> AutoModeDefaultsCommand
fn default() -> AutoModeDefaultsCommand
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AutoModeDefaultsCommand
impl RefUnwindSafe for AutoModeDefaultsCommand
impl Send for AutoModeDefaultsCommand
impl Sync for AutoModeDefaultsCommand
impl Unpin for AutoModeDefaultsCommand
impl UnsafeUnpin for AutoModeDefaultsCommand
impl UnwindSafe for AutoModeDefaultsCommand
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
Source§impl<T> ClaudeCommandSyncExt for Twhere
T: ClaudeCommand<Output = CommandOutput>,
impl<T> ClaudeCommandSyncExt for Twhere
T: ClaudeCommand<Output = CommandOutput>,
Source§fn execute_sync(&self, claude: &Claude) -> Result<CommandOutput, Error>
fn execute_sync(&self, claude: &Claude) -> Result<CommandOutput, Error>
Blocking analog of
ClaudeCommand::execute for commands
producing CommandOutput.