Skip to main content

vldb_lancedb/
lib.rs

1/// 数据库管理模块,负责默认库与多库连接管理。
2/// Database management module responsible for default-database and multi-database connection management.
3pub mod manager;
4
5/// 类型模块,负责定义纯 Rust 核心输入输出结构。
6/// Types module responsible for defining pure Rust core input and output structures.
7pub mod types;
8
9/// 引擎模块,负责提供可嵌入的 LanceDB 核心操作能力。
10/// Engine module responsible for providing embeddable LanceDB core operations.
11pub mod engine;
12
13/// 运行时模块,负责组合数据库管理器与引擎实例化流程。
14/// Runtime module responsible for composing the database manager with engine instantiation flows.
15pub mod runtime;
16
17/// FFI 模块,负责导出稳定的 C ABI 供非 Rust 调用方使用。
18/// FFI module responsible for exporting a stable C ABI for non-Rust callers.
19pub mod ffi;