pub struct RubricRunConfig {
pub codex_acp_binary: PathBuf,
pub extra_env: Vec<(OsString, OsString)>,
pub cwd: Option<PathBuf>,
}Expand description
Runtime configuration for direct Codex ACP calls.
Fields§
§codex_acp_binary: PathBufPath to the codex-acp executable.
extra_env: Vec<(OsString, OsString)>Extra environment variables for the child process.
cwd: Option<PathBuf>Working directory passed to Codex ACP.
Trait Implementations§
Source§impl Clone for RubricRunConfig
impl Clone for RubricRunConfig
Source§fn clone(&self) -> RubricRunConfig
fn clone(&self) -> RubricRunConfig
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 RubricRunConfig
impl Debug for RubricRunConfig
Source§impl Default for RubricRunConfig
impl Default for RubricRunConfig
impl Eq for RubricRunConfig
Source§impl PartialEq for RubricRunConfig
impl PartialEq for RubricRunConfig
Source§fn eq(&self, other: &RubricRunConfig) -> bool
fn eq(&self, other: &RubricRunConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RubricRunConfig
Auto Trait Implementations§
impl Freeze for RubricRunConfig
impl RefUnwindSafe for RubricRunConfig
impl Send for RubricRunConfig
impl Sync for RubricRunConfig
impl Unpin for RubricRunConfig
impl UnsafeUnpin for RubricRunConfig
impl UnwindSafe for RubricRunConfig
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