pub enum CompactionReview {
Always,
Auto,
Never,
}Expand description
Review policy for a proposed compaction summary.
Variants§
Always
Require review for every compaction.
Auto
Require review only for a high-risk covered range.
Never
Never require review.
Trait Implementations§
Source§impl Clone for CompactionReview
impl Clone for CompactionReview
Source§fn clone(&self) -> CompactionReview
fn clone(&self) -> CompactionReview
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 CompactionReview
Source§impl Debug for CompactionReview
impl Debug for CompactionReview
Source§impl Default for CompactionReview
impl Default for CompactionReview
Source§fn default() -> CompactionReview
fn default() -> CompactionReview
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CompactionReview
impl<'de> Deserialize<'de> for CompactionReview
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for CompactionReview
Source§impl PartialEq for CompactionReview
impl PartialEq for CompactionReview
Source§impl Serialize for CompactionReview
impl Serialize for CompactionReview
impl StructuralPartialEq for CompactionReview
Auto Trait Implementations§
impl Freeze for CompactionReview
impl RefUnwindSafe for CompactionReview
impl Send for CompactionReview
impl Sync for CompactionReview
impl Unpin for CompactionReview
impl UnsafeUnpin for CompactionReview
impl UnwindSafe for CompactionReview
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