macro_rules! transmute {
    ($val:expr) => { ... };
    ($srcty:ty; $dstty:ty; $val:expr) => { ... };
}Expand description
A macro to transmute between two types without requiring knowing size statically.
macro_rules! transmute {
    ($val:expr) => { ... };
    ($srcty:ty; $dstty:ty; $val:expr) => { ... };
}A macro to transmute between two types without requiring knowing size statically.