#[non_exhaustive]pub struct AdvanceChildRolloutJobRun {
pub rollout: String,
pub rollout_phase_id: String,
/* private fields */
}
Expand description
AdvanceChildRolloutJobRun contains information specific to a
advanceChildRollout JobRun
.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.rollout: String
Output only. Name of the ChildRollout
. Format is
projects/{project}/locations/{location}/deliveryPipelines/{deliveryPipeline}/releases/{release}/rollouts/{rollout}
.
rollout_phase_id: String
Output only. the ID of the ChildRollout’s Phase.
Implementations§
Source§impl AdvanceChildRolloutJobRun
impl AdvanceChildRolloutJobRun
pub fn new() -> Self
Sourcepub fn set_rollout<T: Into<String>>(self, v: T) -> Self
pub fn set_rollout<T: Into<String>>(self, v: T) -> Self
Sets the value of rollout.
Sourcepub fn set_rollout_phase_id<T: Into<String>>(self, v: T) -> Self
pub fn set_rollout_phase_id<T: Into<String>>(self, v: T) -> Self
Sets the value of rollout_phase_id.
Trait Implementations§
Source§impl Clone for AdvanceChildRolloutJobRun
impl Clone for AdvanceChildRolloutJobRun
Source§fn clone(&self) -> AdvanceChildRolloutJobRun
fn clone(&self) -> AdvanceChildRolloutJobRun
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 AdvanceChildRolloutJobRun
impl Debug for AdvanceChildRolloutJobRun
Source§impl Default for AdvanceChildRolloutJobRun
impl Default for AdvanceChildRolloutJobRun
Source§fn default() -> AdvanceChildRolloutJobRun
fn default() -> AdvanceChildRolloutJobRun
Returns the “default value” for a type. Read more
Source§impl Message for AdvanceChildRolloutJobRun
impl Message for AdvanceChildRolloutJobRun
impl StructuralPartialEq for AdvanceChildRolloutJobRun
Auto Trait Implementations§
impl Freeze for AdvanceChildRolloutJobRun
impl RefUnwindSafe for AdvanceChildRolloutJobRun
impl Send for AdvanceChildRolloutJobRun
impl Sync for AdvanceChildRolloutJobRun
impl Unpin for AdvanceChildRolloutJobRun
impl UnwindSafe for AdvanceChildRolloutJobRun
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