pub struct RolloutPolicy {
pub strategy: String,
pub waves: Vec<PolicyWave>,
pub health_gate: HealthGate,
pub on_health_failure: OnHealthFailure,
}Fields§
§strategy: String§waves: Vec<PolicyWave>§health_gate: HealthGate§on_health_failure: OnHealthFailureTrait Implementations§
Source§impl Clone for RolloutPolicy
impl Clone for RolloutPolicy
Source§fn clone(&self) -> RolloutPolicy
fn clone(&self) -> RolloutPolicy
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 RolloutPolicy
impl Debug for RolloutPolicy
Source§impl<'de> Deserialize<'de> for RolloutPolicy
impl<'de> Deserialize<'de> for RolloutPolicy
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 PartialEq for RolloutPolicy
impl PartialEq for RolloutPolicy
Source§impl Serialize for RolloutPolicy
impl Serialize for RolloutPolicy
impl StructuralPartialEq for RolloutPolicy
Auto Trait Implementations§
impl Freeze for RolloutPolicy
impl RefUnwindSafe for RolloutPolicy
impl Send for RolloutPolicy
impl Sync for RolloutPolicy
impl Unpin for RolloutPolicy
impl UnwindSafe for RolloutPolicy
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