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