pub struct ExecGlobalConfig {
pub workspace_root: String,
pub default_timeout_secs: u64,
pub default_concurrency: usize,
pub deny_env: Vec<String>,
pub profiles: Vec<ExecProfile>,
pub canonical_workspace_root: Option<PathBuf>,
}Expand description
Global [components.exec] config.
Fields§
§workspace_root: String§default_timeout_secs: u64§default_concurrency: usize§deny_env: Vec<String>§profiles: Vec<ExecProfile>§canonical_workspace_root: Option<PathBuf>Resolved at startup pinning (not deserialized). Runtime confinement uses
THIS, never a "." fallback (I-6: fail-closed, no silent weakening).
Implementations§
Trait Implementations§
Source§impl Clone for ExecGlobalConfig
impl Clone for ExecGlobalConfig
Source§fn clone(&self) -> ExecGlobalConfig
fn clone(&self) -> ExecGlobalConfig
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 ExecGlobalConfig
impl Debug for ExecGlobalConfig
Source§impl Default for ExecGlobalConfig
impl Default for ExecGlobalConfig
Source§fn default() -> ExecGlobalConfig
fn default() -> ExecGlobalConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExecGlobalConfig
impl<'de> Deserialize<'de> for ExecGlobalConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ExecGlobalConfig
impl RefUnwindSafe for ExecGlobalConfig
impl Send for ExecGlobalConfig
impl Sync for ExecGlobalConfig
impl Unpin for ExecGlobalConfig
impl UnsafeUnpin for ExecGlobalConfig
impl UnwindSafe for ExecGlobalConfig
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