#[non_exhaustive]pub enum StereoEye {
Left,
Right,
}Expand description
Identifies the eye targeted by a stereo viewing-method parameter.
Encodes the Left/Right selector that several DisplayID 2.x stereo methods (0x27)
use to label which half of the frame, or which physical interface, carries which eye.
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.
Trait Implementations§
impl Copy for StereoEye
impl Eq for StereoEye
impl StructuralPartialEq for StereoEye
Auto Trait Implementations§
impl Freeze for StereoEye
impl RefUnwindSafe for StereoEye
impl Send for StereoEye
impl Sync for StereoEye
impl Unpin for StereoEye
impl UnsafeUnpin for StereoEye
impl UnwindSafe for StereoEye
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