pub struct RuntimeOverrides {Show 16 fields
pub embedding_dim: Option<u32>,
pub claude_binary: Option<String>,
pub codex_binary: Option<String>,
pub opencode_binary: Option<String>,
pub llm_model: Option<String>,
pub llm_fallback: Option<String>,
pub skip_embedding_on_failure: bool,
pub llm_max_host_concurrency: Option<usize>,
pub llm_slot_wait_secs: Option<u64>,
pub llm_slot_no_wait: bool,
pub strict_env_clear: bool,
pub log_level: Option<String>,
pub log_format: Option<String>,
pub lang: Option<String>,
pub display_tz: Option<String>,
pub db_path: Option<String>,
}Expand description
Process-wide overrides captured once from CLI flags at bootstrap.
Fields§
§embedding_dim: Option<u32>§claude_binary: Option<String>§codex_binary: Option<String>§opencode_binary: Option<String>§llm_model: Option<String>§llm_fallback: Option<String>§skip_embedding_on_failure: bool§llm_max_host_concurrency: Option<usize>§llm_slot_wait_secs: Option<u64>§llm_slot_no_wait: bool§strict_env_clear: bool§log_level: Option<String>§log_format: Option<String>§lang: Option<String>§display_tz: Option<String>§db_path: Option<String>Trait Implementations§
Source§impl Clone for RuntimeOverrides
impl Clone for RuntimeOverrides
Source§fn clone(&self) -> RuntimeOverrides
fn clone(&self) -> RuntimeOverrides
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 RuntimeOverrides
impl Debug for RuntimeOverrides
Source§impl Default for RuntimeOverrides
impl Default for RuntimeOverrides
Source§fn default() -> RuntimeOverrides
fn default() -> RuntimeOverrides
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RuntimeOverrides
impl RefUnwindSafe for RuntimeOverrides
impl Send for RuntimeOverrides
impl Sync for RuntimeOverrides
impl Unpin for RuntimeOverrides
impl UnsafeUnpin for RuntimeOverrides
impl UnwindSafe for RuntimeOverrides
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more