pub enum ResolutionOutcome {
AutoResolvedNewWon,
AutoResolvedExistingWon,
NearTieQueued,
}Expand description
Story 1.3 / Pass B: outcome of a single conflict pair after resolution.
Variants§
AutoResolvedNewWon
Auto-resolved: the new memory won; the existing memory’s valid_to
was stamped to now (it will be excluded from default retrieval).
AutoResolvedExistingWon
Auto-resolved: the existing memory won; the new memory’s valid_to
was stamped to now.
NearTieQueued
Near-tie (|Δ| < NEAR_TIE_BAND): recorded in memory_conflicts
for operator review. Nothing was auto-stamped.
Trait Implementations§
Source§impl Clone for ResolutionOutcome
impl Clone for ResolutionOutcome
Source§fn clone(&self) -> ResolutionOutcome
fn clone(&self) -> ResolutionOutcome
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 ResolutionOutcome
impl Debug for ResolutionOutcome
impl Eq for ResolutionOutcome
Source§impl PartialEq for ResolutionOutcome
impl PartialEq for ResolutionOutcome
Source§fn eq(&self, other: &ResolutionOutcome) -> bool
fn eq(&self, other: &ResolutionOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ResolutionOutcome
Auto Trait Implementations§
impl Freeze for ResolutionOutcome
impl RefUnwindSafe for ResolutionOutcome
impl Send for ResolutionOutcome
impl Sync for ResolutionOutcome
impl Unpin for ResolutionOutcome
impl UnsafeUnpin for ResolutionOutcome
impl UnwindSafe for ResolutionOutcome
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