Function std::intrinsics::transmuteStable [-] [+] [src]

pub unsafe fn transmute<T, U>(e: T) -> U

Unsafely transforms a value of one type into a value of another type.

Both types must have the same size.

Examples

fn main() { use std::mem; let v: &[u8] = unsafe { mem::transmute("L") }; assert!(v == [76u8]); }
use std::mem;

let v: &[u8] = unsafe { mem::transmute("L") };
assert!(v == [76u8]);