pub struct ClaudeHarnessConfig {
pub command: String,
}Expand description
What this adapter is, as opposed to what is layered onto it — the same
split as AcpHarnessConfig and
OpenHarnessConfig.
Fields§
§command: StringProgram to spawn. A bare name is resolved on PATH; a path is used as given. Everything else about the adapter — arguments, output parsing, auth probing — is unchanged, so a rename upstream, a fork, a wrapper script or a test stub costs a field here rather than a release.
Trait Implementations§
Source§impl Clone for ClaudeHarnessConfig
impl Clone for ClaudeHarnessConfig
Source§fn clone(&self) -> ClaudeHarnessConfig
fn clone(&self) -> ClaudeHarnessConfig
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 moreSource§impl Debug for ClaudeHarnessConfig
impl Debug for ClaudeHarnessConfig
Auto Trait Implementations§
impl Freeze for ClaudeHarnessConfig
impl RefUnwindSafe for ClaudeHarnessConfig
impl Send for ClaudeHarnessConfig
impl Sync for ClaudeHarnessConfig
impl Unpin for ClaudeHarnessConfig
impl UnsafeUnpin for ClaudeHarnessConfig
impl UnwindSafe for ClaudeHarnessConfig
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