pub struct JournalConfig {
pub db_path: PathBuf,
}Expand description
Configuration for the journal.
Fields§
§db_path: PathBufDirectory for the RocksDB database that stores journal entries and metadata.
Trait Implementations§
Source§impl Clone for JournalConfig
impl Clone for JournalConfig
Source§fn clone(&self) -> JournalConfig
fn clone(&self) -> JournalConfig
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 JournalConfig
impl Debug for JournalConfig
Auto Trait Implementations§
impl Freeze for JournalConfig
impl RefUnwindSafe for JournalConfig
impl Send for JournalConfig
impl Sync for JournalConfig
impl Unpin for JournalConfig
impl UnsafeUnpin for JournalConfig
impl UnwindSafe for JournalConfig
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