1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//!Conversion to static array
//!
//!# Usage
//!
//!```rust
//!extern crate lazy_bytes_cast;
//!use lazy_bytes_cast::array::IntoByteArray;
//!
//!fn main() {
//!    let array = 666.into_byte_array();
//!
//!    println!("bytes={:?}", array);
//!}
//!```

use ::mem;

///Describes conversion to byte array.
pub trait IntoByteArray: Copy {
    ///Type into which to convert.
    type Array: Copy;

    ///Performs conversion of self into `Array`.
    fn into_byte_array(self) -> Self::Array;
}

macro_rules! impl_trait {
    ($($type:ty,)+) => {
        $(
            impl IntoByteArray for $type {
                type Array = [u8; mem::size_of::<$type>()];

                fn into_byte_array(self) -> Self::Array {
                    unsafe { mem::transmute(self) }
                }
            }
        )+
    }
}

impl_trait!(u8, i8, u16, i16, u32, i32, f32, u64, i64, f64, usize, isize,);