pub struct MiscFeatures {
pub has_preferred_timing: bool,
pub default_gtf: bool,
pub srgb_is_primary: bool,
pub preferred_timing_is_native: bool,
pub continuous_freq: bool,
}Expand description
Miscellaneous basic features, defined in section 3.6.4.
Note, the enum values don’t match the specification.
Fields§
§has_preferred_timing: boolFirst detailed timing is the preferred timing.
Always set for EDID 1.4 and later.
default_gtf: boolGTF using the default parameters is supported.
Never set for EDID 1.4 and later.
srgb_is_primary: boolsRGB standard default color space is primary color space.
preferred_timing_is_native: boolPreferred timing mode includes native pixel format and rate.
Never set for EDID 1.3 and earlier.
continuous_freq: boolGTF or CVT generated timings within the display’s range limits are accepted.
Never set for EDID 1.3 and earlier.
Trait Implementations§
Source§impl Clone for MiscFeatures
impl Clone for MiscFeatures
Source§fn clone(&self) -> MiscFeatures
fn clone(&self) -> MiscFeatures
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 MiscFeatures
impl Debug for MiscFeatures
Source§impl From<di_edid_misc_features> for MiscFeatures
impl From<di_edid_misc_features> for MiscFeatures
Source§fn from(value: di_edid_misc_features) -> MiscFeatures
fn from(value: di_edid_misc_features) -> MiscFeatures
Converts to this type from the input type.
impl Copy for MiscFeatures
Auto Trait Implementations§
impl Freeze for MiscFeatures
impl RefUnwindSafe for MiscFeatures
impl Send for MiscFeatures
impl Sync for MiscFeatures
impl Unpin for MiscFeatures
impl UnwindSafe for MiscFeatures
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