pub struct MarketplaceAddCommand { /* private fields */ }Expand description
Add a plugin marketplace from a URL, path, or GitHub repo.
§Example
use claude_wrapper::{Claude, ClaudeCommand, MarketplaceAddCommand, Scope};
let claude = Claude::builder().build()?;
MarketplaceAddCommand::new("https://github.com/org/marketplace")
.scope(Scope::User)
.execute(&claude)
.await?;Implementations§
Trait Implementations§
Source§impl Clone for MarketplaceAddCommand
impl Clone for MarketplaceAddCommand
Source§fn clone(&self) -> MarketplaceAddCommand
fn clone(&self) -> MarketplaceAddCommand
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 moreAuto Trait Implementations§
impl Freeze for MarketplaceAddCommand
impl RefUnwindSafe for MarketplaceAddCommand
impl Send for MarketplaceAddCommand
impl Sync for MarketplaceAddCommand
impl Unpin for MarketplaceAddCommand
impl UnsafeUnpin for MarketplaceAddCommand
impl UnwindSafe for MarketplaceAddCommand
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