macro_rules! const_numeric {
($NAME:ident, $CONST:literal, $TYPE:ty, $ENDIAN:literal, $(#[$STRUCT_META:meta]),* ) => { ... };
}Expand description
This is a short hand macro for generating a new CONST tuple struct type for numerics like u16, i16, u32, i32, u64, i64, …
Typically will not be used directly but instead will be called via one of the other macros like const_u16_tuple, const_i16_tuple, …