pub struct HdmiVideoFormat {
pub vic: u8,
pub h_active: i32,
pub v_active: i32,
pub h_front: i32,
pub v_front: i32,
pub h_sync: i32,
pub v_sync: i32,
pub h_back: i32,
pub v_back: i32,
pub pixel_clock_hz: i64,
}Available on crate feature
v0_3 only.Expand description
A HDMI video format, not to be confused with a CTA-861 video format.
Fields§
§vic: u8§h_active: i32§v_active: i32§h_front: i32§v_front: i32§h_sync: i32§v_sync: i32§h_back: i32§v_back: i32§pixel_clock_hz: i64Implementations§
Trait Implementations§
Source§impl Clone for HdmiVideoFormat
impl Clone for HdmiVideoFormat
Source§fn clone(&self) -> HdmiVideoFormat
fn clone(&self) -> HdmiVideoFormat
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HdmiVideoFormat
impl Debug for HdmiVideoFormat
Source§impl From<di_cta_hdmi_video_format> for HdmiVideoFormat
impl From<di_cta_hdmi_video_format> for HdmiVideoFormat
Source§fn from(value: di_cta_hdmi_video_format) -> HdmiVideoFormat
fn from(value: di_cta_hdmi_video_format) -> HdmiVideoFormat
Converts to this type from the input type.
impl Copy for HdmiVideoFormat
Auto Trait Implementations§
impl Freeze for HdmiVideoFormat
impl RefUnwindSafe for HdmiVideoFormat
impl Send for HdmiVideoFormat
impl Sync for HdmiVideoFormat
impl Unpin for HdmiVideoFormat
impl UnwindSafe for HdmiVideoFormat
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