[][src]Trait packed_simd::IntoBits

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

Safe lossless bitwise conversion from Self to T.

Required methods

fn into_bits(self) -> T

Safe lossless bitwise transmute from self to T.

Loading content...

Implementors

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

FromBits implies IntoBits.

Loading content...