Struct parity_db::ColumnOptions
source · [−]pub struct ColumnOptions {
pub preimage: bool,
pub uniform: bool,
pub sizes: [u16; 15],
pub ref_counted: bool,
}
Fields
preimage: bool
Indicates that the column value is the preimage of the key. This implies that a given value always has the same key. Enables some optimizations.
uniform: bool
Indicates that the keys are at least 32 bytes and the first 32 bytes have uniform distribution. Allows for skipping additional key hashing.
sizes: [u16; 15]
Value size tiers.
ref_counted: bool
Use referece counting for values.
Trait Implementations
sourceimpl Clone for ColumnOptions
impl Clone for ColumnOptions
sourcefn clone(&self) -> ColumnOptions
fn clone(&self) -> ColumnOptions
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ColumnOptions
impl Debug for ColumnOptions
sourceimpl Default for ColumnOptions
impl Default for ColumnOptions
sourcefn default() -> ColumnOptions
fn default() -> ColumnOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for ColumnOptions
impl Send for ColumnOptions
impl Sync for ColumnOptions
impl Unpin for ColumnOptions
impl UnwindSafe for ColumnOptions
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more