pub struct SessionConfig {
pub root: PathBuf,
pub timeout_secs: Option<u64>,
pub max_output: Option<usize>,
pub global_recipe_dirs: Vec<PathBuf>,
}Expand description
Configuration passed to Session::new. Optional fields fall back
to sensible defaults (60s timeout, 100KB output limit).
Fields§
§root: PathBuf§timeout_secs: Option<u64>§max_output: Option<usize>§global_recipe_dirs: Vec<PathBuf>Additional global recipe directories, in precedence order (lowest first).
The default ~/.config/lds is always consulted by build_resolve_chain
regardless of this list. Entries here are pushed after the default and before
the project justfile. Populate via LDS_RECIPE_GLOBAL_DIRS (colon-separated)
and/or the global_recipe_dir MCP wire argument.
Trait Implementations§
Source§impl Debug for SessionConfig
impl Debug for SessionConfig
Source§impl Default for SessionConfig
impl Default for SessionConfig
Source§fn default() -> SessionConfig
fn default() -> SessionConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SessionConfig
impl RefUnwindSafe for SessionConfig
impl Send for SessionConfig
impl Sync for SessionConfig
impl Unpin for SessionConfig
impl UnsafeUnpin for SessionConfig
impl UnwindSafe for SessionConfig
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