[][src]Struct edid::DetailedTiming

pub struct DetailedTiming {
    pub pixel_clock: u32,
    pub horizontal_active_pixels: u16,
    pub horizontal_blanking_pixels: u16,
    pub vertical_active_lines: u16,
    pub vertical_blanking_lines: u16,
    pub horizontal_front_porch: u16,
    pub horizontal_sync_width: u16,
    pub vertical_front_porch: u16,
    pub vertical_sync_width: u16,
    pub horizontal_size: u16,
    pub vertical_size: u16,
    pub horizontal_border_pixels: u8,
    pub vertical_border_pixels: u8,
    pub features: u8,
}

Fields

pixel_clock: u32

Pixel clock in kHz.

horizontal_active_pixels: u16horizontal_blanking_pixels: u16vertical_active_lines: u16vertical_blanking_lines: u16horizontal_front_porch: u16horizontal_sync_width: u16vertical_front_porch: u16vertical_sync_width: u16horizontal_size: u16

Horizontal size in millimeters

vertical_size: u16

Vertical size in millimeters

horizontal_border_pixels: u8

Border pixels on one side of screen (i.e. total number is twice this)

vertical_border_pixels: u8

Border pixels on one side of screen (i.e. total number is twice this)

features: u8

Trait Implementations

impl PartialEq<DetailedTiming> for DetailedTiming
[src]

impl Debug for DetailedTiming
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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