pub struct CliConfig {
pub binary: Option<String>,
pub timeout_secs: u64,
}Expand description
Tunables for one CliProvider instance.
Fields§
§binary: Option<String>Override the binary path. Defaults to spec.binary (PATH lookup).
timeout_secs: u64Wall-clock timeout for a single completion. Default 25s so a stalled CLI reports a timeout before Nix’s 30s stage kill.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CliConfig
impl RefUnwindSafe for CliConfig
impl Send for CliConfig
impl Sync for CliConfig
impl Unpin for CliConfig
impl UnsafeUnpin for CliConfig
impl UnwindSafe for CliConfig
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