readbin 0.2.0

A library to interact with binary
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// Define the object file type
pub struct TYPE {}

impl TYPE {
    /// No file type
    pub const NONE: u16 = 0;
    /// Relocatable file
    pub const REL: u16 = 1;
    /// Executable file
    pub const EXEC: u16 = 2;
    /// Share object file
    pub const DYN: u16 = 3;
    /// Core file
    pub const CORE: u16 = 4;
}