pub struct ExternalBlobOptions {
pub base_path: PathBuf,
pub min_bytes: usize,
pub sync: bool,
pub pack_target_bytes: Option<usize>,
}Expand description
Options for storing larger LMDB blobs in normal files.
Fields§
§base_path: PathBuf§min_bytes: usize§sync: bool§pack_target_bytes: Option<usize>Implementations§
Trait Implementations§
Source§impl Clone for ExternalBlobOptions
impl Clone for ExternalBlobOptions
Source§fn clone(&self) -> ExternalBlobOptions
fn clone(&self) -> ExternalBlobOptions
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 moreAuto Trait Implementations§
impl Freeze for ExternalBlobOptions
impl RefUnwindSafe for ExternalBlobOptions
impl Send for ExternalBlobOptions
impl Sync for ExternalBlobOptions
impl Unpin for ExternalBlobOptions
impl UnsafeUnpin for ExternalBlobOptions
impl UnwindSafe for ExternalBlobOptions
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