[][src]Struct rexrocksdb::rocksdb_options::ReadOptions

pub struct ReadOptions { /* fields omitted */ }

Methods

impl ReadOptions[src]

pub fn new() -> ReadOptions[src]

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

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

pub unsafe fn set_snapshot(&mut self, snapshot: &UnsafeSnap)[src]

pub fn set_iterate_lower_bound(&mut self, key: &[u8])[src]

pub fn set_iterate_upper_bound(&mut self, key: &[u8])[src]

pub fn set_read_tier(&mut self, tier: c_int)[src]

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

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

pub fn set_readahead_size(&mut self, size: size_t)[src]

pub fn set_max_skippable_internal_keys(&mut self, n: u64)[src]

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

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

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

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

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

pub unsafe fn get_inner(&self) -> *const DBReadOptions[src]

pub fn set_table_filter(&mut self, filter: Box<dyn TableFilter>)[src]

Trait Implementations

impl Drop for ReadOptions[src]

impl Default for ReadOptions[src]

Auto Trait Implementations

impl !Send for ReadOptions

impl !Sync for ReadOptions

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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