Macro from_transmute
macro_rules! from_transmute {
{ unsafe $a:ty => $b:ty } => { ... };
{ @impl $from:ty => $to:ty } => { ... };
}
Provides implementations of From<$a> for $b and From<$b> for $a that transmutes the value.