1 2 3 4 5 6 7 8 9
//! FerrumFIX code generation utilities. #[cfg(feature = "codegen")] #[cfg_attr(doc_cfg, doc(cfg(feature = "codegen")))] pub mod codegen; pub mod dict; /// Type alias for FIX tags: 16-bit unsigned integers, strictly positive. pub type TagU16 = std::num::NonZeroU16;