pub struct WorkflowDagStepValidationInput<'a> {
pub step_key: StepKey<'a>,
pub execution_kind: WorkflowStepExecutionKind,
pub job_type: Option<JobType<'a>>,
pub priority: Option<i32>,
pub max_attempts: Option<i32>,
pub timeout_seconds: Option<i32>,
pub stage: Option<JobStage>,
pub dependencies: Vec<WorkflowDagDependencyValidationInput<'a>>,
}Fields§
§step_key: StepKey<'a>§execution_kind: WorkflowStepExecutionKind§job_type: Option<JobType<'a>>§priority: Option<i32>§max_attempts: Option<i32>§timeout_seconds: Option<i32>§stage: Option<JobStage>§dependencies: Vec<WorkflowDagDependencyValidationInput<'a>>Trait Implementations§
Source§impl<'a> Clone for WorkflowDagStepValidationInput<'a>
impl<'a> Clone for WorkflowDagStepValidationInput<'a>
Source§fn clone(&self) -> WorkflowDagStepValidationInput<'a>
fn clone(&self) -> WorkflowDagStepValidationInput<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for WorkflowDagStepValidationInput<'a>
impl<'a> RefUnwindSafe for WorkflowDagStepValidationInput<'a>
impl<'a> Send for WorkflowDagStepValidationInput<'a>
impl<'a> Sync for WorkflowDagStepValidationInput<'a>
impl<'a> Unpin for WorkflowDagStepValidationInput<'a>
impl<'a> UnsafeUnpin for WorkflowDagStepValidationInput<'a>
impl<'a> UnwindSafe for WorkflowDagStepValidationInput<'a>
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