#[non_exhaustive]pub enum DualInterfaceMirroring {
None,
LeftRight,
TopBottom,
Reserved,
}Expand description
Mirroring applied to one of the dual interfaces in StereoViewingMethodV2::DualInterface.
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.
None
No mirroring applied.
LeftRight
Image is mirrored across the vertical axis (left/right swap).
TopBottom
Image is mirrored across the horizontal axis (top/bottom swap).
Reserved
Reserved by the DisplayID 2.x specification.
Trait Implementations§
Source§impl Clone for DualInterfaceMirroring
impl Clone for DualInterfaceMirroring
Source§fn clone(&self) -> DualInterfaceMirroring
fn clone(&self) -> DualInterfaceMirroring
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DualInterfaceMirroring
impl Debug for DualInterfaceMirroring
Source§impl PartialEq for DualInterfaceMirroring
impl PartialEq for DualInterfaceMirroring
Source§fn eq(&self, other: &DualInterfaceMirroring) -> bool
fn eq(&self, other: &DualInterfaceMirroring) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for DualInterfaceMirroring
impl Eq for DualInterfaceMirroring
impl StructuralPartialEq for DualInterfaceMirroring
Auto Trait Implementations§
impl Freeze for DualInterfaceMirroring
impl RefUnwindSafe for DualInterfaceMirroring
impl Send for DualInterfaceMirroring
impl Sync for DualInterfaceMirroring
impl Unpin for DualInterfaceMirroring
impl UnsafeUnpin for DualInterfaceMirroring
impl UnwindSafe for DualInterfaceMirroring
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