pub struct CaptureOptions {
pub intent: String,
pub confidence: Option<f32>,
pub force: bool,
pub worktree_status_options: WorktreeStatusOptions,
pub machine_contract_input: Option<MachineContractInput>,
}Expand description
Fully-resolved inputs for the normal local capture operation.
Attribution remains an embedding concern because the CLI combines explicit
flags, harness detection, sessions, and environment variables. capture
resolves it lazily after non-mutating safety checks, then owns the remaining
mutation ordering.
Fields§
§intent: String§confidence: Option<f32>§force: bool§worktree_status_options: WorktreeStatusOptions§machine_contract_input: Option<MachineContractInput>Trait Implementations§
Auto Trait Implementations§
impl Freeze for CaptureOptions
impl RefUnwindSafe for CaptureOptions
impl Send for CaptureOptions
impl Sync for CaptureOptions
impl Unpin for CaptureOptions
impl UnsafeUnpin for CaptureOptions
impl UnwindSafe for CaptureOptions
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