pub struct CodexOptions {
pub model: String,
pub effort: String,
pub timeout_secs: u64,
pub project_root: PathBuf,
pub bypass_sandbox: bool,
}Expand description
Configuration for Codex invocations.
Fields§
§model: String§effort: String§timeout_secs: u64§project_root: PathBuf§bypass_sandbox: boolImplementations§
Trait Implementations§
Source§impl Clone for CodexOptions
impl Clone for CodexOptions
Source§fn clone(&self) -> CodexOptions
fn clone(&self) -> CodexOptions
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 CodexOptions
impl Debug for CodexOptions
Auto Trait Implementations§
impl Freeze for CodexOptions
impl RefUnwindSafe for CodexOptions
impl Send for CodexOptions
impl Sync for CodexOptions
impl Unpin for CodexOptions
impl UnsafeUnpin for CodexOptions
impl UnwindSafe for CodexOptions
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