Struct evegfx::config::VideoTimings[][src]

pub struct VideoTimings {
    pub sysclk_freq: ClockFrequency,
    pub pclk_div: u8,
    pub pclk_pol: ClockPolarity,
    pub horiz: VideoTimingDimension,
    pub vert: VideoTimingDimension,
}

Represents the timing parameters for video output.

Fields

sysclk_freq: ClockFrequencypclk_div: u8pclk_pol: ClockPolarityhoriz: VideoTimingDimensionvert: VideoTimingDimension

Implementations

impl VideoTimings[src]

pub const MODE_720P: Self[src]

Timing settings to approximate what's expected for a 720p signal. This mode is only available on EVE devices that are able to switch the system clock to 72MHz, thus allowing this mode to use a 72MHz pixel clock, which is approximately the 74.25MHz that 720p nominally requires.

Trait Implementations

impl Debug for VideoTimings[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.