Struct engine_rocks::raw::ReadOptions[][src]

pub struct ReadOptions {
    inner: *mut DBReadOptions,
    lower_bound: Vec<u8, Global>,
    upper_bound: Vec<u8, Global>,
    titan_inner: *mut DBTitanReadOptions,
}

Fields

inner: *mut DBReadOptionslower_bound: Vec<u8, Global>upper_bound: Vec<u8, Global>titan_inner: *mut DBTitanReadOptions

Implementations

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: Vec<u8, Global>)[src]

pub fn iterate_lower_bound(&self) -> &[u8]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

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

pub fn iterate_upper_bound(&self) -> &[u8]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

pub fn set_read_tier(&mut self, tier: i32)[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: usize)[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 fn get_inner(&self) -> *const DBReadOptions[src]

pub fn get_titan_inner(&self) -> *const DBTitanReadOptions[src]

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

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

Trait Implementations

impl Default for ReadOptions[src]

impl Drop for ReadOptions[src]

Auto Trait Implementations

impl RefUnwindSafe for ReadOptions

impl !Send for ReadOptions

impl !Sync for ReadOptions

impl Unpin for ReadOptions

impl UnwindSafe for ReadOptions

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> Instrument for T[src]

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

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

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

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]