Function std::intrinsics::transmute [] [src]

pub unsafe extern "rust-intrinsic" 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 == [76]); }
use std::mem;

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