liboptic_edid 0.1.0

Parses EDIDs from raw bytes (in 100% Rust)
Documentation
1
2
3
4
5
6
7
8
9
10
/// Contains info about which version + revision of the standard this structure
/// expects.
#[repr(C)]
#[derive(Clone, Debug, PartialEq, PartialOrd)]
pub struct EdidVersion {
    /// Should be 0x01 for v1.4.
    pub version: u8,
    /// Should be 0x04 for v1.4.
    pub revision: u8,
}