pub struct ParallelConfig {
pub workers: Option<u8>,
pub workspace_root: Option<PathBuf>,
pub max_push_attempts: Option<u8>,
pub push_backoff_ms: Option<Vec<u64>>,
pub workspace_retention_hours: Option<u32>,
}Expand description
Parallel run-loop configuration.
Fields§
§workers: Option<u8>Number of workers to run concurrently when parallel mode is enabled.
workspace_root: Option<PathBuf>Root directory for parallel workspaces (relative to repo root if not absolute).
max_push_attempts: Option<u8>Maximum number of push attempts before giving up.
push_backoff_ms: Option<Vec<u64>>Backoff intervals in milliseconds for push retries.
workspace_retention_hours: Option<u32>Hours to retain blocked workspaces before cleanup.
Implementations§
Source§impl ParallelConfig
impl ParallelConfig
pub fn merge_from(&mut self, other: Self)
Trait Implementations§
Source§impl Clone for ParallelConfig
impl Clone for ParallelConfig
Source§fn clone(&self) -> ParallelConfig
fn clone(&self) -> ParallelConfig
Returns a duplicate of the value. Read more
1.0.0 · 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 ParallelConfig
impl Debug for ParallelConfig
Source§impl Default for ParallelConfig
impl Default for ParallelConfig
Source§fn default() -> ParallelConfig
fn default() -> ParallelConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ParallelConfigwhere
ParallelConfig: Default,
impl<'de> Deserialize<'de> for ParallelConfigwhere
ParallelConfig: Default,
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
Source§impl JsonSchema for ParallelConfig
impl JsonSchema for ParallelConfig
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for ParallelConfig
impl RefUnwindSafe for ParallelConfig
impl Send for ParallelConfig
impl Sync for ParallelConfig
impl Unpin for ParallelConfig
impl UnsafeUnpin for ParallelConfig
impl UnwindSafe for ParallelConfig
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