pub struct DPMSFeatures {
pub standby_supported: bool,
pub suspend_supported: bool,
pub low_power_supported: bool,
pub display_type: DisplayType,
pub default_srgb: bool,
pub preferred_timing_mode: bool,
pub default_gtf_supported: bool,
}Expand description
DPMS features supported by the display.
Fields§
§standby_supported: bool§suspend_supported: bool§low_power_supported: bool§display_type: DisplayType§default_srgb: bool§preferred_timing_mode: boolIf set, the preferred timing mode is specified in the first detailed timing block.
default_gtf_supported: boolIf set, all timings from the standard GTF will work.
Trait Implementations§
Source§impl Clone for DPMSFeatures
impl Clone for DPMSFeatures
Source§fn clone(&self) -> DPMSFeatures
fn clone(&self) -> DPMSFeatures
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 moreAuto Trait Implementations§
impl Freeze for DPMSFeatures
impl RefUnwindSafe for DPMSFeatures
impl Send for DPMSFeatures
impl Sync for DPMSFeatures
impl Unpin for DPMSFeatures
impl UnwindSafe for DPMSFeatures
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