pub mod id_tracker_read;
use std::path::PathBuf;
use crate::common::stored_bitslice::StoredBitSlice;
use crate::common::universal_io::UniversalRead;
use crate::segment::id_tracker::compressed::compressed_point_mappings::CompressedPointMappings;
use crate::segment::id_tracker::compressed::versions_store::CompressedVersions;
pub struct ReadOnlyImmutableIdTracker<S: UniversalRead> {
path: PathBuf,
deleted: StoredBitSlice<S>,
internal_to_version: CompressedVersions,
mappings: CompressedPointMappings,
}