Enum pancake_engine_ssi::opers::fc::fc_compaction::CompactionResult
source · pub(super) enum CompactionResult {
NoChange,
Empty,
Some(CommittedUnit),
}Variants§
NoChange
Flushing+compaction would not have changed the given slice of Units; hence was not executed.
Empty
Flushing+compaction was executed, and resulted in an empty Unit.
Some(CommittedUnit)
Flushing+compaction was executed, and resulted in one Unit containing 1+ non-empty SSTables.
Auto Trait Implementations§
impl RefUnwindSafe for CompactionResult
impl Send for CompactionResult
impl Sync for CompactionResult
impl Unpin for CompactionResult
impl UnwindSafe for CompactionResult
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