pub enum HotFallbackReason {
MissingMapping,
StaleRowId,
InvisibleAtSnapshot,
HistoricalSnapshot,
Tombstone,
TtlExpired,
PrimaryKeyMismatch,
IndexIncomplete,
CheckpointRejected,
}Expand description
Reasons a HOT (Hash-Organized Table) PK lookup may fall back to the slower
overlay + sorted-run path. Stable identifiers; the string literals are the
stable wire/label form (see TODO §5.1).
Variants§
MissingMapping
StaleRowId
InvisibleAtSnapshot
HistoricalSnapshot
Tombstone
TtlExpired
PrimaryKeyMismatch
IndexIncomplete
CheckpointRejected
Implementations§
Trait Implementations§
Source§impl Clone for HotFallbackReason
impl Clone for HotFallbackReason
Source§fn clone(&self) -> HotFallbackReason
fn clone(&self) -> HotFallbackReason
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 HotFallbackReason
Source§impl Debug for HotFallbackReason
impl Debug for HotFallbackReason
Source§impl Display for HotFallbackReason
impl Display for HotFallbackReason
impl Eq for HotFallbackReason
Source§impl Hash for HotFallbackReason
impl Hash for HotFallbackReason
Source§impl PartialEq for HotFallbackReason
impl PartialEq for HotFallbackReason
impl StructuralPartialEq for HotFallbackReason
Auto Trait Implementations§
impl Freeze for HotFallbackReason
impl RefUnwindSafe for HotFallbackReason
impl Send for HotFallbackReason
impl Sync for HotFallbackReason
impl Unpin for HotFallbackReason
impl UnsafeUnpin for HotFallbackReason
impl UnwindSafe for HotFallbackReason
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more