[][src]Struct rocksdb::ReadOptions

pub struct ReadOptions { /* fields omitted */ }

Methods

impl ReadOptions[src]

pub fn set_iterate_upper_bound<K: Into<Vec<u8>>>(&mut self, key: K)[src]

Sets the upper bound for an iterator. The upper bound itself is not included on the iteration result.

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

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

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

If true, all data read from underlying storage will be verified against corresponding checksums.

Default: true

pub fn set_readahead_size(&mut self, v: usize)[src]

If non-zero, an iterator will create a new table reader which performs reads of the given size. Using a large size (> 2MB) can improve the performance of forward iteration on spinning disks. Default: 0

use rocksdb::{ReadOptions};

let mut opts = ReadOptions::default();
opts.set_readahead_size(4_194_304); // 4mb

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

If true, create a tailing iterator. Note that tailing iterators only support moving in the forward direction. Iterating in reverse or seek_to_last are not supported.

Trait Implementations

impl Default for ReadOptions[src]

impl Drop for ReadOptions[src]

impl Send for ReadOptions[src]

impl Sync for ReadOptions[src]

Auto Trait Implementations

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.