Struct rocksdb::rocksdb_options::CompactOptions[][src]

pub struct CompactOptions {
    pub inner: *mut DBCompactOptions,
}

Fields

inner: *mut DBCompactOptions

Implementations

impl CompactOptions[src]

pub fn new() -> CompactOptions[src]

pub fn set_exclusive_manual_compaction(&mut self, v: bool)[src]

pub fn set_change_level(&mut self, v: bool)[src]

pub fn set_target_level(&mut self, v: i32)[src]

pub fn set_target_path_id(&mut self, v: i32)[src]

pub fn set_max_subcompactions(&mut self, v: i32)[src]

pub fn set_bottommost_level_compaction(
    &mut self,
    v: DBBottommostLevelCompaction
)
[src]

Trait Implementations

impl Drop for CompactOptions[src]

Auto Trait Implementations

impl RefUnwindSafe for CompactOptions

impl !Send for CompactOptions

impl !Sync for CompactOptions

impl Unpin for CompactOptions

impl UnwindSafe for CompactOptions

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.