pub struct StoragePaths {
pub base_dir: PathBuf,
pub sqlite_path: PathBuf,
pub hnsw_dir: PathBuf,
pub hnsw_basename: String,
}Expand description
Resolved file paths for all storage files within a memory directory.
Fields§
§base_dir: PathBufThe base directory containing all storage files.
sqlite_path: PathBufPath to the SQLite database file.
hnsw_dir: PathBufDirectory for HNSW files (same as base_dir, hnsw_rs writes basename.hnsw.graph + basename.hnsw.data).
hnsw_basename: StringBase name for HNSW files (e.g., “memory” → memory.hnsw.graph + memory.hnsw.data).
Implementations§
Source§impl StoragePaths
impl StoragePaths
Sourcepub fn new(base_dir: impl AsRef<Path>) -> Self
pub fn new(base_dir: impl AsRef<Path>) -> Self
Create storage paths from a base directory.
Given /path/to/memory, resolves:
/path/to/memory/memory.db/path/to/memory/memory.hnsw.graph/path/to/memory/memory.hnsw.data
Sourcepub fn hnsw_graph_path(&self) -> PathBuf
pub fn hnsw_graph_path(&self) -> PathBuf
Path to the HNSW graph file.
Sourcepub fn hnsw_data_path(&self) -> PathBuf
pub fn hnsw_data_path(&self) -> PathBuf
Path to the HNSW data file.
Sourcepub fn hnsw_files_exist(&self) -> bool
pub fn hnsw_files_exist(&self) -> bool
Whether both HNSW sidecar files exist on disk.
Trait Implementations§
Source§impl Clone for StoragePaths
impl Clone for StoragePaths
Source§fn clone(&self) -> StoragePaths
fn clone(&self) -> StoragePaths
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 moreAuto Trait Implementations§
impl Freeze for StoragePaths
impl RefUnwindSafe for StoragePaths
impl Send for StoragePaths
impl Sync for StoragePaths
impl Unpin for StoragePaths
impl UnsafeUnpin for StoragePaths
impl UnwindSafe for StoragePaths
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more