#[non_exhaustive]pub enum DeployUpdateOrder {
StopFirst,
StartFirst,
Other(String),
}Expand description
Update order with unsupported values retained.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
StopFirst
Stop the old task before starting the new task.
StartFirst
Start the new task before stopping the old task.
Other(String)
A retained provider-specific order.
Trait Implementations§
Source§impl Clone for DeployUpdateOrder
impl Clone for DeployUpdateOrder
Source§fn clone(&self) -> DeployUpdateOrder
fn clone(&self) -> DeployUpdateOrder
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DeployUpdateOrder
impl Debug for DeployUpdateOrder
impl Eq for DeployUpdateOrder
Source§impl PartialEq for DeployUpdateOrder
impl PartialEq for DeployUpdateOrder
impl StructuralPartialEq for DeployUpdateOrder
Auto Trait Implementations§
impl Freeze for DeployUpdateOrder
impl RefUnwindSafe for DeployUpdateOrder
impl Send for DeployUpdateOrder
impl Sync for DeployUpdateOrder
impl Unpin for DeployUpdateOrder
impl UnsafeUnpin for DeployUpdateOrder
impl UnwindSafe for DeployUpdateOrder
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