d_engine_proto/exts/
mod.rs

1//! Protocol buffer type extensions
2//!
3//! This module provides additional trait implementations and helper methods
4//! for protobuf-generated types. While the imports appear unused at the module level,
5//! they are re-exported for use by dependent crates (d-engine-core, d-engine, d-engine-client).
6
7pub mod client_ext;
8pub mod cluster_ext;
9pub mod common_ext;
10pub mod replication_ext;
11pub mod storage_ext;
12
13#[cfg(test)]
14mod client_ext_test;
15#[cfg(test)]
16mod cluster_ext_test;
17#[cfg(test)]
18mod common_ext_test;
19#[cfg(test)]
20mod replication_ext_test;
21#[cfg(test)]
22mod storage_ext_test;