serde_hex/macros/
mod.rs

1//! Collection of useful macros.
2//!
3//! Includes macros for easyily implementing `SerHex`, as well as a number of
4//! macros for defining useful triats on byte-array style newtypes
5//! (e.g.; `Foo([u8;n])`).
6
7#[macro_use]
8pub mod misc;
9
10#[macro_use]
11pub mod hex;
12
13#[macro_use]
14mod local;