#[non_exhaustive]pub enum JobRun {
DeployJobRun(Box<DeployJobRun>),
VerifyJobRun(Box<VerifyJobRun>),
PredeployJobRun(Box<PredeployJobRun>),
PostdeployJobRun(Box<PostdeployJobRun>),
CreateChildRolloutJobRun(Box<CreateChildRolloutJobRun>),
AdvanceChildRolloutJobRun(Box<AdvanceChildRolloutJobRun>),
}
Expand description
The JobRun
type and the information for that type.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
DeployJobRun(Box<DeployJobRun>)
Output only. Information specific to a deploy JobRun
.
VerifyJobRun(Box<VerifyJobRun>)
Output only. Information specific to a verify JobRun
.
PredeployJobRun(Box<PredeployJobRun>)
Output only. Information specific to a predeploy JobRun
.
PostdeployJobRun(Box<PostdeployJobRun>)
Output only. Information specific to a postdeploy JobRun
.
CreateChildRolloutJobRun(Box<CreateChildRolloutJobRun>)
Output only. Information specific to a createChildRollout JobRun
.
AdvanceChildRolloutJobRun(Box<AdvanceChildRolloutJobRun>)
Output only. Information specific to an advanceChildRollout JobRun
Trait Implementations§
impl StructuralPartialEq for JobRun
Auto Trait Implementations§
impl Freeze for JobRun
impl RefUnwindSafe for JobRun
impl Send for JobRun
impl Sync for JobRun
impl Unpin for JobRun
impl UnwindSafe for JobRun
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