pub struct DisruptionBudget {
pub selector: Selector,
pub max_in_flight: Option<u32>,
pub max_in_flight_pct: Option<u32>,
}Fields§
§selector: SelectorTag-driven selector resolved at reconcile time so tag membership can change without re-signing fleet.resolved.
max_in_flight: Option<u32>§max_in_flight_pct: Option<u32>Trait Implementations§
Source§impl Clone for DisruptionBudget
impl Clone for DisruptionBudget
Source§fn clone(&self) -> DisruptionBudget
fn clone(&self) -> DisruptionBudget
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 DisruptionBudget
impl Debug for DisruptionBudget
Source§impl<'de> Deserialize<'de> for DisruptionBudget
impl<'de> Deserialize<'de> for DisruptionBudget
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 DisruptionBudget
impl PartialEq for DisruptionBudget
Source§impl Serialize for DisruptionBudget
impl Serialize for DisruptionBudget
impl StructuralPartialEq for DisruptionBudget
Auto Trait Implementations§
impl Freeze for DisruptionBudget
impl RefUnwindSafe for DisruptionBudget
impl Send for DisruptionBudget
impl Sync for DisruptionBudget
impl Unpin for DisruptionBudget
impl UnwindSafe for DisruptionBudget
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