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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
use ::core::primitive::bool;

use crate::{TBuffer, TBytes};

impl TBytes for bool {
    fn size(&self) -> usize {
        1
    }

    fn to_bytes(&self) -> Vec<u8> {
        if *self {
            vec![1]
        } else {
            vec![0]
        }
    }

    fn from_bytes(buffer: &mut TBuffer) -> Option<Self>
    where
        Self: Sized,
    {
        let byte = buffer.next()?;
        if byte > 0 {
            Some(true)
        } else {
            Some(false)
        }
    }
}

impl TBytes for f32 {
    fn size(&self) -> usize {
        4
    }

    fn to_bytes(&self) -> Vec<u8> {
        self.to_le_bytes().to_vec()
    }

    fn from_bytes(buffer: &mut TBuffer) -> Option<Self>
    where
        Self: Sized,
    {
        Some(Self::from_le_bytes([
            buffer.next()?,
            buffer.next()?,
            buffer.next()?,
            buffer.next()?,
        ]))
    }
}

impl TBytes for f64 {
    fn size(&self) -> usize {
        8
    }

    fn to_bytes(&self) -> Vec<u8> {
        self.to_le_bytes().to_vec()
    }

    fn from_bytes(buffer: &mut TBuffer) -> Option<Self>
    where
        Self: Sized,
    {
        Some(Self::from_le_bytes([
            buffer.next()?,
            buffer.next()?,
            buffer.next()?,
            buffer.next()?,
            buffer.next()?,
            buffer.next()?,
            buffer.next()?,
            buffer.next()?,
        ]))
    }
}

#[cfg(test)]
mod test {
    use crate::TBytes;

    #[test]
    fn bool() {
        let a = true;

        let mut bytes = a.to_bytes();

        let other = bool::from_bytes(&mut bytes.drain(..)).unwrap();

        assert_eq!(a, other);

        let b = true;

        let mut bytes = b.to_bytes();

        let other = bool::from_bytes(&mut bytes.drain(..)).unwrap();

        assert_eq!(b, other)
    }

    #[test]
    fn f32() {
        let a = 5234.0f32;

        let mut bytes = a.to_bytes();

        let other = f32::from_bytes(&mut bytes.drain(..)).unwrap();

        assert_eq!(a, other)
    }

    #[test]
    fn f64() {
        let a = 43223.32f64;

        let mut bytes = a.to_bytes();

        let other = f64::from_bytes(&mut bytes.drain(..)).unwrap();

        assert_eq!(a, other)
    }
}