#[non_exhaustive]#[repr(u32)]pub enum EVRScreenshotType {
k_EVRScreenshotType_None = 0,
k_EVRScreenshotType_Mono = 1,
k_EVRScreenshotType_Stereo = 2,
k_EVRScreenshotType_MonoCubemap = 3,
k_EVRScreenshotType_MonoPanorama = 4,
k_EVRScreenshotType_StereoPanorama = 5,
}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.
k_EVRScreenshotType_None = 0
k_EVRScreenshotType_Mono = 1
k_EVRScreenshotType_Stereo = 2
k_EVRScreenshotType_MonoCubemap = 3
k_EVRScreenshotType_MonoPanorama = 4
k_EVRScreenshotType_StereoPanorama = 5
Trait Implementations§
Source§impl Clone for EVRScreenshotType
impl Clone for EVRScreenshotType
Source§fn clone(&self) -> EVRScreenshotType
fn clone(&self) -> EVRScreenshotType
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 moreimpl Copy for EVRScreenshotType
Source§impl Debug for EVRScreenshotType
impl Debug for EVRScreenshotType
impl Eq for EVRScreenshotType
Source§impl Hash for EVRScreenshotType
impl Hash for EVRScreenshotType
Source§impl PartialEq for EVRScreenshotType
impl PartialEq for EVRScreenshotType
Source§fn eq(&self, other: &EVRScreenshotType) -> bool
fn eq(&self, other: &EVRScreenshotType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EVRScreenshotType
Auto Trait Implementations§
impl Freeze for EVRScreenshotType
impl RefUnwindSafe for EVRScreenshotType
impl Send for EVRScreenshotType
impl Sync for EVRScreenshotType
impl Unpin for EVRScreenshotType
impl UnsafeUnpin for EVRScreenshotType
impl UnwindSafe for EVRScreenshotType
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