1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
mod into;
mod add;

#[derive(Debug, Copy, Clone, PartialEq)]
pub enum Integer16 {
    Num(u16),
    Null,
}

impl Integer16 {
    fn get_num(&self) -> u16 {
        match *self {
            Integer16::Num(e) => e,
            _ => 0,
        }
    }
}