#[non_exhaustive]pub enum AnalogSyncLevel {
V700_300,
V714_286,
V1000_400,
V700_0,
}Expand description
Video white and sync levels for an analog display, decoded from EDID base block
byte 0x14 bits 6–5.
Specifies the signal voltage levels used for video white and sync, relative to blank.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
V700_300
0.700 V video / 0.300 V sync / 1.000 V total (most common).
V714_286
0.714 V video / 0.286 V sync / 1.000 V total (EGA/CGA-compatible).
V1000_400
1.000 V video / 0.400 V sync / 1.400 V total.
V700_0
0.700 V video / 0.000 V sync / 0.700 V total.
Trait Implementations§
Source§impl Clone for AnalogSyncLevel
impl Clone for AnalogSyncLevel
Source§fn clone(&self) -> AnalogSyncLevel
fn clone(&self) -> AnalogSyncLevel
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 AnalogSyncLevel
impl Debug for AnalogSyncLevel
Source§impl PartialEq for AnalogSyncLevel
impl PartialEq for AnalogSyncLevel
impl Copy for AnalogSyncLevel
impl Eq for AnalogSyncLevel
impl StructuralPartialEq for AnalogSyncLevel
Auto Trait Implementations§
impl Freeze for AnalogSyncLevel
impl RefUnwindSafe for AnalogSyncLevel
impl Send for AnalogSyncLevel
impl Sync for AnalogSyncLevel
impl Unpin for AnalogSyncLevel
impl UnsafeUnpin for AnalogSyncLevel
impl UnwindSafe for AnalogSyncLevel
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