1
2
3
4
#![no_std]

#[inline]
pub unsafe fn transmute<A, B>(a: A) -> B { ::core::ptr::read(&a as *const A as *const B) }