pub struct PluginListCommand { /* private fields */ }Expand description
List installed plugins.
§Example
use claude_wrapper::{Claude, ClaudeCommand, PluginListCommand};
let claude = Claude::builder().build()?;
let output = PluginListCommand::new().json().execute(&claude).await?;
println!("{}", output.stdout);Implementations§
Trait Implementations§
Source§impl ClaudeCommand for PluginListCommand
impl ClaudeCommand for PluginListCommand
Source§impl Clone for PluginListCommand
impl Clone for PluginListCommand
Source§fn clone(&self) -> PluginListCommand
fn clone(&self) -> PluginListCommand
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 PluginListCommand
impl Debug for PluginListCommand
Source§impl Default for PluginListCommand
impl Default for PluginListCommand
Source§fn default() -> PluginListCommand
fn default() -> PluginListCommand
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PluginListCommand
impl RefUnwindSafe for PluginListCommand
impl Send for PluginListCommand
impl Sync for PluginListCommand
impl Unpin for PluginListCommand
impl UnsafeUnpin for PluginListCommand
impl UnwindSafe for PluginListCommand
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