pub enum StereoType {
None,
SequentialRightSync,
SequentialLeftSync,
InterleavedLinesRightEven,
InterleavedLinesLeftEven,
Interleaved4Way,
SideBySide,
}Expand description
Type of stereo image supported by the display.
Variants§
None
SequentialRightSync
SequentialLeftSync
InterleavedLinesRightEven
InterleavedLinesLeftEven
Interleaved4Way
SideBySide
Trait Implementations§
Source§impl Clone for StereoType
impl Clone for StereoType
Source§fn clone(&self) -> StereoType
fn clone(&self) -> StereoType
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 StereoType
impl Debug for StereoType
impl Copy for StereoType
Auto Trait Implementations§
impl Freeze for StereoType
impl RefUnwindSafe for StereoType
impl Send for StereoType
impl Sync for StereoType
impl Unpin for StereoType
impl UnwindSafe for StereoType
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