pub struct PluginDetailsCommand { /* private fields */ }Expand description
Show a plugin’s component inventory and projected token cost
(claude plugin details <name>).
Implementations§
Trait Implementations§
Source§impl ClaudeCommand for PluginDetailsCommand
impl ClaudeCommand for PluginDetailsCommand
Source§impl Clone for PluginDetailsCommand
impl Clone for PluginDetailsCommand
Source§fn clone(&self) -> PluginDetailsCommand
fn clone(&self) -> PluginDetailsCommand
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PluginDetailsCommand
impl RefUnwindSafe for PluginDetailsCommand
impl Send for PluginDetailsCommand
impl Sync for PluginDetailsCommand
impl Unpin for PluginDetailsCommand
impl UnsafeUnpin for PluginDetailsCommand
impl UnwindSafe for PluginDetailsCommand
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.