pub struct RawCommand { /* private fields */ }Expand description
Escape hatch for running arbitrary claude subcommands not yet covered by dedicated command builders.
§Example
use claude_wrapper::{Claude, ClaudeCommand, RawCommand};
let claude = Claude::builder().build()?;
let output = RawCommand::new("agents")
.arg("--setting-sources")
.arg("user,project")
.execute(&claude)
.await?;
println!("{}", output.stdout);Implementations§
Source§impl RawCommand
impl RawCommand
Trait Implementations§
Source§impl ClaudeCommand for RawCommand
impl ClaudeCommand for RawCommand
Source§impl Clone for RawCommand
impl Clone for RawCommand
Source§fn clone(&self) -> RawCommand
fn clone(&self) -> RawCommand
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 RawCommand
impl RefUnwindSafe for RawCommand
impl Send for RawCommand
impl Sync for RawCommand
impl Unpin for RawCommand
impl UnsafeUnpin for RawCommand
impl UnwindSafe for RawCommand
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