pub struct RunnerFeatures {
pub reasoning_effort: bool,
pub sandbox: SandboxSupport,
pub plan_mode: bool,
pub verbose: bool,
pub approval_modes: Vec<String>,
}Fields§
§reasoning_effort: boolReasoning effort control (Codex only).
sandbox: SandboxSupportSandbox mode control.
plan_mode: boolPlan mode support (Cursor only).
verbose: boolVerbose output control.
approval_modes: Vec<String>Approval mode control.
Trait Implementations§
Source§impl Clone for RunnerFeatures
impl Clone for RunnerFeatures
Source§fn clone(&self) -> RunnerFeatures
fn clone(&self) -> RunnerFeatures
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 RunnerFeatures
impl Debug for RunnerFeatures
Auto Trait Implementations§
impl Freeze for RunnerFeatures
impl RefUnwindSafe for RunnerFeatures
impl Send for RunnerFeatures
impl Sync for RunnerFeatures
impl Unpin for RunnerFeatures
impl UnsafeUnpin for RunnerFeatures
impl UnwindSafe for RunnerFeatures
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