pub struct DatabaseOpenOptions {
pub database_dir: PathBuf,
pub sync_mode: SyncMode,
pub segment_target_bytes: u64,
pub max_database_bytes: u64,
}Expand description
Options for opening a named filesystem-backed database.
Fields§
§database_dir: PathBuf§sync_mode: SyncMode§segment_target_bytes: u64§max_database_bytes: u64Implementations§
Source§impl DatabaseOpenOptions
impl DatabaseOpenOptions
pub fn with_database_dir(self, database_dir: impl Into<PathBuf>) -> Self
pub fn wal_config_for(&self, name: &DatabaseName) -> WalConfig
pub fn database_path_for(&self, name: &DatabaseName) -> PathBuf
Trait Implementations§
Source§impl Clone for DatabaseOpenOptions
impl Clone for DatabaseOpenOptions
Source§fn clone(&self) -> DatabaseOpenOptions
fn clone(&self) -> DatabaseOpenOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DatabaseOpenOptions
impl Debug for DatabaseOpenOptions
Auto Trait Implementations§
impl Freeze for DatabaseOpenOptions
impl RefUnwindSafe for DatabaseOpenOptions
impl Send for DatabaseOpenOptions
impl Sync for DatabaseOpenOptions
impl Unpin for DatabaseOpenOptions
impl UnsafeUnpin for DatabaseOpenOptions
impl UnwindSafe for DatabaseOpenOptions
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