pub struct DeriveConfig {
pub project_path: Option<String>,
}Expand description
Configuration for deriving a Toolpath Path from a Codex session.
Note: there’s no include_thinking toggle like the other providers
have. Codex’s reasoning is almost always encrypted ciphertext from
OpenAI’s servers — not useful in a human-readable digest. Plaintext
reasoning summaries (rare) land on Turn.thinking automatically
and surface in the derived path without a flag. The raw ciphertext
is preserved under Turn.extra["codex"]["reasoning_encrypted"] for
round-trip fidelity but never rendered.
Fields§
§project_path: Option<String>Override path.base.uri. Defaults to the cwd from session_meta.
Trait Implementations§
Source§impl Clone for DeriveConfig
impl Clone for DeriveConfig
Source§fn clone(&self) -> DeriveConfig
fn clone(&self) -> DeriveConfig
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 DeriveConfig
impl Debug for DeriveConfig
Source§impl Default for DeriveConfig
impl Default for DeriveConfig
Source§fn default() -> DeriveConfig
fn default() -> DeriveConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DeriveConfig
impl RefUnwindSafe for DeriveConfig
impl Send for DeriveConfig
impl Sync for DeriveConfig
impl Unpin for DeriveConfig
impl UnsafeUnpin for DeriveConfig
impl UnwindSafe for DeriveConfig
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