HdmiScds

Struct HdmiScds 

Source
pub struct HdmiScds {
Show 28 fields pub version: c_int, pub max_tmds_char_rate_mhz: c_int, pub supports_3d_osd_disparity: bool, pub supports_3d_dual_view: bool, pub supports_3d_independent_view: bool, pub supports_lte_340mcsc_scramble: bool, pub supports_ccbpci: bool, pub supports_cable_status: bool, pub supports_scdc_read_request: bool, pub supports_scdc: bool, pub supports_dc_30bit_420: bool, pub supports_dc_36bit_420: bool, pub supports_dc_48bit_420: bool, pub supports_uhd_vic: bool, pub max_frl_rate: HdmiFrl, pub supports_fapa_start_location: bool, pub supports_allm: bool, pub supports_fva: bool, pub supports_neg_mvrr: bool, pub supports_cinema_vrr: bool, pub m_delta: bool, pub supports_qms: bool, pub supports_fapa_end_extended: bool, pub vrr_min_hz: c_int, pub vrr_max_hz: c_int, pub qms_tfr_min: bool, pub qms_tfr_max: bool, pub dsc: Option<HdmiDsc>,
}
Available on crate feature v0_3 only.
Expand description

HDMI Sink Capability Data Structure (SCDS).

This data is exposed via HDMI Forum Vendor-Specific Data Block (HF-VSDB) or the HDMI Forum Sink Capability Data Block (HF-SCDB).

Fields§

§version: c_int§max_tmds_char_rate_mhz: c_int§supports_3d_osd_disparity: bool§supports_3d_dual_view: bool§supports_3d_independent_view: bool§supports_lte_340mcsc_scramble: bool§supports_ccbpci: bool§supports_cable_status: bool§supports_scdc_read_request: bool§supports_scdc: bool§supports_dc_30bit_420: bool§supports_dc_36bit_420: bool§supports_dc_48bit_420: bool§supports_uhd_vic: bool§max_frl_rate: HdmiFrl§supports_fapa_start_location: bool§supports_allm: bool§supports_fva: bool§supports_neg_mvrr: bool§supports_cinema_vrr: bool§m_delta: bool§supports_qms: bool§supports_fapa_end_extended: bool§vrr_min_hz: c_int§vrr_max_hz: c_int§qms_tfr_min: bool§qms_tfr_max: bool§dsc: Option<HdmiDsc>

Trait Implementations§

Source§

impl Clone for HdmiScds

Source§

fn clone(&self) -> HdmiScds

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for HdmiScds

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<di_cta_hdmi_scds> for HdmiScds

Source§

fn from(value: di_cta_hdmi_scds) -> HdmiScds

Converts to this type from the input type.
Source§

impl Copy for HdmiScds

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.