macro_rules! impl_int_conversion {
($P:ty, $I:ty) => { ... };
}Expand description
Simple macro for implementing conversion functions between Pod* integers and standard integers.
The standard integer types can cause alignment issues when placed in a Pod,
so these replacements are usable in all Pods.