Trait TransmuteInto

Source
pub trait TransmuteInto<T> {
    // Required method
    fn transmute_into(self) -> T;
}
Expand description

Reinterprets the bits of a value of one type as another type.

Required Methods§

Source

fn transmute_into(self) -> T

Reinterprets the bits of a value of one type as another type.

Implementations on Foreign Types§

Source§

impl TransmuteInto<f32> for f32

Source§

impl TransmuteInto<f32> for i32

Source§

impl TransmuteInto<f64> for f64

Source§

impl TransmuteInto<f64> for i64

Source§

impl TransmuteInto<i32> for f32

Source§

impl TransmuteInto<i32> for i32

Source§

impl TransmuteInto<i32> for u32

Source§

impl TransmuteInto<i64> for f64

Source§

impl TransmuteInto<i64> for i64

Source§

impl TransmuteInto<i64> for u64

Source§

impl TransmuteInto<u8> for i8

Source§

impl TransmuteInto<u32> for i32

Source§

impl TransmuteInto<u64> for i64

Source§

impl TransmuteInto<F32> for f32

Source§

impl TransmuteInto<F32> for i32

Source§

impl TransmuteInto<F32> for u32

Source§

impl TransmuteInto<F64> for f64

Source§

impl TransmuteInto<F64> for i64

Source§

impl TransmuteInto<F64> for u64

Implementors§