#[non_exhaustive]pub struct CreateChildRolloutJobRun {
pub rollout: String,
pub rollout_phase_id: String,
/* private fields */
}
Expand description
CreateChildRolloutJobRun contains information specific to a
createChildRollout 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 Phase initiated by this JobRun.
Implementations§
Source§impl CreateChildRolloutJobRun
impl CreateChildRolloutJobRun
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 CreateChildRolloutJobRun
impl Clone for CreateChildRolloutJobRun
Source§fn clone(&self) -> CreateChildRolloutJobRun
fn clone(&self) -> CreateChildRolloutJobRun
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 CreateChildRolloutJobRun
impl Debug for CreateChildRolloutJobRun
Source§impl Default for CreateChildRolloutJobRun
impl Default for CreateChildRolloutJobRun
Source§fn default() -> CreateChildRolloutJobRun
fn default() -> CreateChildRolloutJobRun
Returns the “default value” for a type. Read more
Source§impl Message for CreateChildRolloutJobRun
impl Message for CreateChildRolloutJobRun
Source§impl PartialEq for CreateChildRolloutJobRun
impl PartialEq for CreateChildRolloutJobRun
impl StructuralPartialEq for CreateChildRolloutJobRun
Auto Trait Implementations§
impl Freeze for CreateChildRolloutJobRun
impl RefUnwindSafe for CreateChildRolloutJobRun
impl Send for CreateChildRolloutJobRun
impl Sync for CreateChildRolloutJobRun
impl Unpin for CreateChildRolloutJobRun
impl UnwindSafe for CreateChildRolloutJobRun
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