#[non_exhaustive]pub enum MarkWorkerDeadOutcome {
Marked,
NotRegistered,
}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.
Marked
NotRegistered
Liveness key already absent — no-op, idempotent. Unified
variant name with HeartbeatWorkerOutcome::NotRegistered.
Trait Implementations§
Source§impl Clone for MarkWorkerDeadOutcome
impl Clone for MarkWorkerDeadOutcome
Source§fn clone(&self) -> MarkWorkerDeadOutcome
fn clone(&self) -> MarkWorkerDeadOutcome
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 MarkWorkerDeadOutcome
impl Debug for MarkWorkerDeadOutcome
Source§impl PartialEq for MarkWorkerDeadOutcome
impl PartialEq for MarkWorkerDeadOutcome
impl Copy for MarkWorkerDeadOutcome
impl Eq for MarkWorkerDeadOutcome
impl StructuralPartialEq for MarkWorkerDeadOutcome
Auto Trait Implementations§
impl Freeze for MarkWorkerDeadOutcome
impl RefUnwindSafe for MarkWorkerDeadOutcome
impl Send for MarkWorkerDeadOutcome
impl Sync for MarkWorkerDeadOutcome
impl Unpin for MarkWorkerDeadOutcome
impl UnsafeUnpin for MarkWorkerDeadOutcome
impl UnwindSafe for MarkWorkerDeadOutcome
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