pub enum UpdatePreparation {
NoUpdate,
AwaitingHealth(Box<ArtifactDescriptor>),
}Expand description
Result of staging and activating an update before process-level health verification.
Variants§
NoUpdate
Provider reported no eligible update.
AwaitingHealth(Box<ArtifactDescriptor>)
Candidate is active and awaits supervisor health verification.
Trait Implementations§
Source§impl Clone for UpdatePreparation
impl Clone for UpdatePreparation
Source§fn clone(&self) -> UpdatePreparation
fn clone(&self) -> UpdatePreparation
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 UpdatePreparation
impl Debug for UpdatePreparation
impl Eq for UpdatePreparation
Source§impl PartialEq for UpdatePreparation
impl PartialEq for UpdatePreparation
impl StructuralPartialEq for UpdatePreparation
Auto Trait Implementations§
impl Freeze for UpdatePreparation
impl RefUnwindSafe for UpdatePreparation
impl Send for UpdatePreparation
impl Sync for UpdatePreparation
impl Unpin for UpdatePreparation
impl UnsafeUnpin for UpdatePreparation
impl UnwindSafe for UpdatePreparation
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