Trait packed_simd_2::IntoBits[][src]

pub trait IntoBits<T>: Sized {
    fn into_bits(self) -> T;
}
Expand description

Safe lossless bitwise conversion from Self to T.

Required methods

fn into_bits(self) -> T[src]

Expand description

Safe lossless bitwise transmute from self to T.

Implementors

impl<T, U> IntoBits<U> for T where
    U: FromBits<T>, 
[src]

FromBits implies IntoBits.

fn into_bits(self) -> U[src]