usecrate::ValueStrategy;/// Strategy for raw (uncompressed) storage vectors.
////// Extends `ValueStrategy` with fast pointer-based reads used by mmap/IO iterators.
pubtraitRawStrategy<T>: ValueStrategy<T> {/// Reads a single T from a raw byte pointer at the given byte offset.
////// For native-layout types, this compiles to a single `mov` instruction,
/// bypassing slice creation, bounds checking, and Result overhead.
////// # Safety
/// - `ptr.add(byte_offset)` must be valid for reading `size_of::<T>()` bytes.
/// - The bytes at that location must be a valid serialized T.
unsafefnread_from_ptr(ptr:*constu8, byte_offset:usize)-> T;}