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