readbin 0.2.0

A library to interact with binary
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// Define the data encoding for the processor-specific data
///
/// Data define possible values for the encoding
/// Its store in the sixth byte of the identifaction 16 bits called `e_ident`
pub struct DATA {}
impl DATA {
    /// Unknow data encoding
    pub const NONE: u8 = 0;
    /// Little endian data encoding
    pub const LE: u8 = 1;
    /// Big endian data encoding
    pub const BE: u8 = 2;
}