pub struct Timing {
pub act_pixel_freq: f64,
pub total_active_pixels: f64,
pub v_lines_rnd: f64,
pub h_front_porch: f64,
pub h_sync: f64,
pub h_back_porch: f64,
pub v_front_porch: f64,
pub v_sync: f64,
pub v_back_porch: f64,
pub act_frame_rate: f64,
}
Expand description
Output parameters, defined in table 3-4.
Fields§
§act_pixel_freq: f64
§total_active_pixels: f64
§v_lines_rnd: f64
§h_front_porch: f64
§h_sync: f64
§h_back_porch: f64
§v_front_porch: f64
§v_sync: f64
§v_back_porch: f64
§act_frame_rate: f64
Implementations§
Trait Implementations§
Source§impl From<di_cvt_timing> for Timing
impl From<di_cvt_timing> for Timing
Source§fn from(value: di_cvt_timing) -> Timing
fn from(value: di_cvt_timing) -> Timing
Converts to this type from the input type.
impl Copy for Timing
Auto Trait Implementations§
impl Freeze for Timing
impl RefUnwindSafe for Timing
impl Send for Timing
impl Sync for Timing
impl Unpin for Timing
impl UnwindSafe for Timing
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more