estring/src/structs.rs

13 lines
218 B
Rust

//! Contains the predefined types (``SepVec``, ``Pair``, etc.)
//!
//! **NOTE**: Require the enabling the `structs` feature.
//!
mod pair;
mod sep_vec;
mod trio;
pub use pair::*;
pub use sep_vec::*;
pub use trio::*;