[][src]Struct edid_rs::EDID

pub struct EDID {
    pub product: ProductInformation,
    pub version: Version,
    pub display: DisplayParameters,
    pub color: ColorCharacteristics,
    pub timings: Timings,
    pub descriptors: MonitorDescriptors,
    pub extensions: u8,
}

The EDID information block.

Fields

product: ProductInformation

Product version information.

version: Version

EDID specification version.

display: DisplayParameters

Display characteristic parameters.

color: ColorCharacteristics

Color calibration parameters.

timings: Timings

Accepted timing modes.

descriptors: MonitorDescriptors

Extra monitor information.

extensions: u8

Number of extensions following the EDID block.

Methods

impl EDID[src]

pub fn parse(r: &mut Reader) -> Result<EDID>[src]

Trait Implementations

impl Clone for EDID[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for EDID[src]

Auto Trait Implementations

impl Sync for EDID

impl Send for EDID

impl Unpin for EDID

impl RefUnwindSafe for EDID

impl UnwindSafe for EDID

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]