#[non_exhaustive]pub enum Jobs {
DeploymentJobs(Box<DeploymentJobs>),
ChildRolloutJobs(Box<ChildRolloutJobs>),
}Expand description
The job composition of this Phase.
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.
DeploymentJobs(Box<DeploymentJobs>)
Output only. Deployment job composition.
ChildRolloutJobs(Box<ChildRolloutJobs>)
Output only. ChildRollout job composition.
Trait Implementations§
impl StructuralPartialEq for Jobs
Auto Trait Implementations§
impl Freeze for Jobs
impl RefUnwindSafe for Jobs
impl Send for Jobs
impl Sync for Jobs
impl Unpin for Jobs
impl UnwindSafe for Jobs
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