pub struct RepairPhaseConfig {
pub retry: Option<Retry>,
pub rollback: Option<Rollback>,
}Expand description
Configuration of the repair phase.
This type is not used in any activity, and only used as part of another schema.
Fields§
§retry: Option<Retry>Optional. Retries a failed job.
rollback: Option<Rollback>Optional. Rolls back a Rollout.
Trait Implementations§
Source§impl Clone for RepairPhaseConfig
impl Clone for RepairPhaseConfig
Source§fn clone(&self) -> RepairPhaseConfig
fn clone(&self) -> RepairPhaseConfig
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 RepairPhaseConfig
impl Debug for RepairPhaseConfig
Source§impl Default for RepairPhaseConfig
impl Default for RepairPhaseConfig
Source§fn default() -> RepairPhaseConfig
fn default() -> RepairPhaseConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RepairPhaseConfig
impl<'de> Deserialize<'de> for RepairPhaseConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for RepairPhaseConfig
impl Serialize for RepairPhaseConfig
impl Part for RepairPhaseConfig
Auto Trait Implementations§
impl Freeze for RepairPhaseConfig
impl RefUnwindSafe for RepairPhaseConfig
impl Send for RepairPhaseConfig
impl Sync for RepairPhaseConfig
impl Unpin for RepairPhaseConfig
impl UnwindSafe for RepairPhaseConfig
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