pub enum CvtAspectRatio {
R4_3,
R16_9,
R16_10,
R5_4,
R15_9,
}Expand description
Preferred aspect ratio for CVT-generated timings, decoded from byte 15 bits 7–5.
Variants§
R4_3
4∶3 preferred aspect ratio.
R16_9
16∶9 preferred aspect ratio.
R16_10
16∶10 preferred aspect ratio.
R5_4
5∶4 preferred aspect ratio.
R15_9
15∶9 preferred aspect ratio.
Trait Implementations§
Source§impl Clone for CvtAspectRatio
impl Clone for CvtAspectRatio
Source§fn clone(&self) -> CvtAspectRatio
fn clone(&self) -> CvtAspectRatio
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 CvtAspectRatio
impl Debug for CvtAspectRatio
Source§impl PartialEq for CvtAspectRatio
impl PartialEq for CvtAspectRatio
impl Copy for CvtAspectRatio
impl Eq for CvtAspectRatio
impl StructuralPartialEq for CvtAspectRatio
Auto Trait Implementations§
impl Freeze for CvtAspectRatio
impl RefUnwindSafe for CvtAspectRatio
impl Send for CvtAspectRatio
impl Sync for CvtAspectRatio
impl Unpin for CvtAspectRatio
impl UnsafeUnpin for CvtAspectRatio
impl UnwindSafe for CvtAspectRatio
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