pub enum HttpReloadPhase {
Prepare,
Switch,
Drain,
Rollback,
}Expand description
Reload phase associated with a controlled failure.
Variants§
Prepare
Candidate validation and health before activation.
Switch
Atomic routing activation and health confirmation.
Drain
Bounded completion of requests admitted by the old generation.
Rollback
Restoration and drain after a failed activation.
Trait Implementations§
Source§impl Clone for HttpReloadPhase
impl Clone for HttpReloadPhase
Source§fn clone(&self) -> HttpReloadPhase
fn clone(&self) -> HttpReloadPhase
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 moreimpl Copy for HttpReloadPhase
Source§impl Debug for HttpReloadPhase
impl Debug for HttpReloadPhase
impl Eq for HttpReloadPhase
Source§impl PartialEq for HttpReloadPhase
impl PartialEq for HttpReloadPhase
impl StructuralPartialEq for HttpReloadPhase
Auto Trait Implementations§
impl Freeze for HttpReloadPhase
impl RefUnwindSafe for HttpReloadPhase
impl Send for HttpReloadPhase
impl Sync for HttpReloadPhase
impl Unpin for HttpReloadPhase
impl UnsafeUnpin for HttpReloadPhase
impl UnwindSafe for HttpReloadPhase
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