Struct sstable::Options [] [src]

pub struct Options {
    pub cmp: Rc<Box<Cmp>>,
    pub write_buffer_size: usize,
    pub block_cache: Rc<RefCell<Cache<Block>>>,
    pub block_size: usize,
    pub block_restart_interval: usize,
    pub compression_type: CompressionType,
    pub filter_policy: BoxedFilterPolicy,
}

Options contains general parameters for reading and writing SSTables. Most of the names are self-explanatory; the defaults are defined in the Default implementation.

Fields

Trait Implementations

impl Clone for Options
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for Options
[src]

[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations

impl !Send for Options

impl !Sync for Options