pub enum Strategy {
Leveled(Leveled),
SizeTiered(SizeTiered),
Fifo(Fifo),
}Expand description
Compaction strategy
Variants§
Leveled(Leveled)
Leveled compaction
SizeTiered(SizeTiered)
Size-tiered compaction
Fifo(Fifo)
FIFO compaction
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Strategy
impl RefUnwindSafe for Strategy
impl Send for Strategy
impl Sync for Strategy
impl Unpin for Strategy
impl UnwindSafe for Strategy
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