readbin 0.2.0

A library to interact with binary
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// Define the version number of the elf specification
///
/// Version define possible values for the version number
/// Its store in the seventh byte of the identifaction 16 bits called `e_ident`
pub struct VERSION {}
impl VERSION {
    /// invalid version
    pub const NONE: u8 = 0;
    /// current elf version
    pub const CURRENT: u8 = 1;
}