[][src]Struct embedded_display_controller::DisplayConfiguration

pub struct DisplayConfiguration {
    pub active_width: u16,
    pub active_height: u16,
    pub h_back_porch: u16,
    pub h_front_porch: u16,
    pub v_back_porch: u16,
    pub v_front_porch: u16,
    pub h_sync: u16,
    pub v_sync: u16,
    pub h_sync_pol: bool,
    pub v_sync_pol: bool,
    pub not_data_enable_pol: bool,
    pub pixel_clock_pol: bool,
}

Display configuration parameters

Fields

active_width: u16active_height: u16h_back_porch: u16h_front_porch: u16v_back_porch: u16v_front_porch: u16h_sync: u16v_sync: u16h_sync_pol: bool

horizontal synchronization: false: active low, true: active high

v_sync_pol: bool

vertical synchronization: false: active low, true: active high

not_data_enable_pol: bool

data enable: false: active low, true: active high

pixel_clock_pol: bool

pixel_clock: false: active low, true: active high

Trait Implementations

impl Clone for DisplayConfiguration[src]

impl Copy for DisplayConfiguration[src]

impl Debug for DisplayConfiguration[src]

impl PartialEq<DisplayConfiguration> for DisplayConfiguration[src]

impl StructuralPartialEq for DisplayConfiguration[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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.