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
pub enum ELFCLASS {
CLASSNone,
CLASS32,
CLASS64,
CLASSNUM,
ANY(u8),
}
impl ELFCLASS {
pub const INDEX: usize = 4;
pub fn to_identifier(&self) -> u8 {
match self {
Self::CLASSNone => 0,
Self::CLASS32 => 1,
Self::CLASS64 => 2,
Self::CLASSNUM => 3,
Self::ANY(b) => *b,
}
}
}
impl From<u8> for ELFCLASS {
fn from(byte: u8) -> Self {
match byte {
0 => Self::CLASSNone,
1 => Self::CLASS32,
2 => Self::CLASS64,
3 => Self::CLASSNUM,
_ => Self::ANY(byte),
}
}
}