pub struct GateConfig {
pub agents: Vec<String>,
pub policy: VerdictPolicy,
pub parallel: bool,
}Fields§
§agents: Vec<String>§policy: VerdictPolicy§parallel: boolRun checks in parallel via rayon’s work-stealing scheduler. v0.2.5+
behaviour. Default false for back-compat. Per [docs/design.md §6.1],
checks MUST be stateless when this is enabled — anything writing to a
shared temp file or process-global state will race.
Trait Implementations§
Source§impl Clone for GateConfig
impl Clone for GateConfig
Source§fn clone(&self) -> GateConfig
fn clone(&self) -> GateConfig
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 GateConfig
impl Debug for GateConfig
Source§impl<'de> Deserialize<'de> for GateConfig
impl<'de> Deserialize<'de> for GateConfig
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 GateConfig
impl RefUnwindSafe for GateConfig
impl Send for GateConfig
impl Sync for GateConfig
impl Unpin for GateConfig
impl UnsafeUnpin for GateConfig
impl UnwindSafe for GateConfig
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