diskann_disk/storage/mod.rs
1/*
2 * Copyright (c) Microsoft Corporation.
3 * Licensed under the MIT license.
4 */
5
6//! Disk-specific storage operations.
7//!
8//! This module contains storage utilities and types
9//! specific to disk index operations.
10
11pub mod disk_index_reader;
12
13mod disk_index_writer;
14pub use disk_index_writer::DiskIndexWriter;
15
16mod cached_reader;
17pub use cached_reader::CachedReader;
18
19mod cached_writer;
20pub use cached_writer::CachedWriter;
21
22pub mod quant;
23
24pub mod api;