reddb_server/storage/vector/mod.rs
1//! Vector storage stable contract surface — issue #743.
2//!
3//! This module exists so callers outside the storage engine (Red UI,
4//! `red.*` virtual tables, drivers) can ask "what is the shape of this
5//! vector collection, and is its artifact ready to search?" without
6//! reaching into internal layout (`engine::vector_store`,
7//! `engine::turboquant::*`, segment states, mmap'd buffers).
8//!
9//! Today it ships exactly one submodule:
10//!
11//! - [`introspection`] — typed metadata + artifact-state registry. The
12//! public Rust surface every operator-facing read path consumes.
13
14pub mod introspection;