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
42
43
44
45
//! Array conversion

use core::mem;

///Describes conversion to byte array.
pub trait IntoByteArray: Copy {
    ///Type into which to convert.
    type Array: Copy + AsRef<[u8]> + AsMut<[u8]> + core::borrow::BorrowMut<[u8]> + core::fmt::Debug;

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

///Describes conversion from byte array.
pub unsafe trait FromByteArray {
    ///Type into which to convert.
    type Array: Copy + AsRef<[u8]> + AsMut<[u8]> + core::borrow::BorrowMut<[u8]> + core::fmt::Debug;

    ///Converts array to self.
    fn from_byte_array(arr: Self::Array) -> Self;
}

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) }
                }
            }

            unsafe impl FromByteArray for $type {
                type Array = [u8; mem::size_of::<$type>()];

                fn from_byte_array(arr: Self::Array) -> Self {
                    unsafe { mem::transmute(arr) }
                }
            }
        )+
    }
}

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