Skip to main content

nichlink/registry_core/tree/
tree.rs

1//! Registry tree: the one `Registry` type plus the pure operations over it.
2//! 注册树:唯一的 `Registry` 类型与作用于其上的纯操作。
3//!
4//! The file tree mirrors the module tree: `tree/tree.rs` is this module, and
5//! every child is a `目录/同名.rs` file it declares with `#[path]`.
6//! 文件树与模块树一致:`tree/tree.rs` 就是本模块,每个子模块都是它用 `#[path]`
7//! 声明的 `目录/同名.rs`。
8
9#[path = "entry_pages/entry_pages.rs"]
10mod entry_pages;
11#[path = "header/header.rs"]
12mod header;
13
14#[path = "connector/connector.rs"]
15pub mod connector;
16#[path = "graft_ops/graft_ops.rs"]
17pub mod graft_ops;
18#[path = "index/index.rs"]
19pub mod index;
20#[path = "inspection/inspection.rs"]
21pub mod inspection;
22#[path = "metadata/metadata.rs"]
23pub mod metadata;
24#[path = "ports/ports.rs"]
25pub mod ports;
26#[path = "query/query.rs"]
27pub mod query;
28#[path = "transaction/transaction.rs"]
29pub mod transaction;
30
31#[path = "registry.rs"]
32mod registry;
33pub use registry::*;