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
use std::convert::TryInto;
use crate::data_types::{NumberLike, SignedLike};
use crate::errors::QCompressResult;
impl SignedLike for bool {
const ZERO: Self = false;
fn wrapping_add(self, other: Self) -> Self {
self ^ other
}
fn wrapping_sub(self, other: Self) -> Self {
self ^ other
}
}
impl NumberLike for bool {
const HEADER_BYTE: u8 = 7;
const PHYSICAL_BITS: usize = 8;
type Signed = bool;
type Unsigned = u8;
fn to_unsigned(self) -> u8 {
self as u8
}
fn from_unsigned(off: u8) -> bool {
off > 0
}
fn to_signed(self) -> bool {
self
}
fn from_signed(signed: bool) -> bool {
signed
}
fn to_bytes(self) -> Vec<u8> {
vec![self as u8]
}
fn from_bytes(bytes: Vec<u8>) -> QCompressResult<bool> {
Ok(u8::from_be_bytes(bytes.try_into().unwrap()) != 0)
}
}