pub struct DomainOptions {
pub bt: BtOptions,
pub salt: Option<u32>,
pub compress: bool,
}Expand description
Options for DomainWriter.
Fields§
§bt: BtOptions.bt index layout/fanout.
salt: Option<u32>If set, a .kvei bloom filter is built using this salt; if None, no .kvei is
produced.
compress: boolWhether to pattern-compress the .kv (smaller output, extra passes). Default
false (no-pattern fast path).
Trait Implementations§
Source§impl Clone for DomainOptions
impl Clone for DomainOptions
Source§fn clone(&self) -> DomainOptions
fn clone(&self) -> DomainOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DomainOptions
Source§impl Debug for DomainOptions
impl Debug for DomainOptions
Source§impl Default for DomainOptions
impl Default for DomainOptions
Source§fn default() -> DomainOptions
fn default() -> DomainOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DomainOptions
impl RefUnwindSafe for DomainOptions
impl Send for DomainOptions
impl Sync for DomainOptions
impl Unpin for DomainOptions
impl UnsafeUnpin for DomainOptions
impl UnwindSafe for DomainOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more