pub struct DomainPaths {
pub kv: PathBuf,
pub bt: PathBuf,
pub kvei: Option<PathBuf>,
}Expand description
Paths written by DomainWriter::finish.
Fields§
§kv: PathBufThe seg data file.
bt: PathBufThe B-tree index.
kvei: Option<PathBuf>The existence filter, if one was built.
Trait Implementations§
Source§impl Clone for DomainPaths
impl Clone for DomainPaths
Source§fn clone(&self) -> DomainPaths
fn clone(&self) -> DomainPaths
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 DomainPaths
impl RefUnwindSafe for DomainPaths
impl Send for DomainPaths
impl Sync for DomainPaths
impl Unpin for DomainPaths
impl UnsafeUnpin for DomainPaths
impl UnwindSafe for DomainPaths
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