#[repr(u32)]pub enum VROverlayFlags {
Show 18 variants
VROverlayFlags_NoDashboardTab = 8,
VROverlayFlags_SendVRDiscreteScrollEvents = 64,
VROverlayFlags_SendVRTouchpadEvents = 128,
VROverlayFlags_ShowTouchPadScrollWheel = 256,
VROverlayFlags_TransferOwnershipToInternalProcess = 512,
VROverlayFlags_SideBySide_Parallel = 1_024,
VROverlayFlags_SideBySide_Crossed = 2_048,
VROverlayFlags_Panorama = 4_096,
VROverlayFlags_StereoPanorama = 8_192,
VROverlayFlags_SortWithNonSceneOverlays = 16_384,
VROverlayFlags_VisibleInDashboard = 32_768,
VROverlayFlags_MakeOverlaysInteractiveIfVisible = 65_536,
VROverlayFlags_SendVRSmoothScrollEvents = 131_072,
VROverlayFlags_ProtectedContent = 262_144,
VROverlayFlags_HideLaserIntersection = 524_288,
VROverlayFlags_WantsModalBehavior = 1_048_576,
VROverlayFlags_IsPremultiplied = 2_097_152,
VROverlayFlags_IgnoreTextureAlpha = 4_194_304,
}Expand description
Overlay control settings
Variants§
VROverlayFlags_NoDashboardTab = 8
VROverlayFlags_SendVRDiscreteScrollEvents = 64
VROverlayFlags_SendVRTouchpadEvents = 128
VROverlayFlags_ShowTouchPadScrollWheel = 256
VROverlayFlags_TransferOwnershipToInternalProcess = 512
VROverlayFlags_SideBySide_Parallel = 1_024
VROverlayFlags_SideBySide_Crossed = 2_048
VROverlayFlags_Panorama = 4_096
VROverlayFlags_StereoPanorama = 8_192
VROverlayFlags_SortWithNonSceneOverlays = 16_384
VROverlayFlags_VisibleInDashboard = 32_768
VROverlayFlags_MakeOverlaysInteractiveIfVisible = 65_536
VROverlayFlags_SendVRSmoothScrollEvents = 131_072
VROverlayFlags_ProtectedContent = 262_144
VROverlayFlags_HideLaserIntersection = 524_288
VROverlayFlags_WantsModalBehavior = 1_048_576
VROverlayFlags_IsPremultiplied = 2_097_152
VROverlayFlags_IgnoreTextureAlpha = 4_194_304
Trait Implementations§
Source§impl Clone for VROverlayFlags
impl Clone for VROverlayFlags
Source§fn clone(&self) -> VROverlayFlags
fn clone(&self) -> VROverlayFlags
Returns a copy 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 ExternType for VROverlayFlags
impl ExternType for VROverlayFlags
Source§impl Hash for VROverlayFlags
impl Hash for VROverlayFlags
Source§impl PartialEq for VROverlayFlags
impl PartialEq for VROverlayFlags
impl Eq for VROverlayFlags
impl StructuralPartialEq for VROverlayFlags
impl UniquePtrTarget for VROverlayFlags
impl VectorElement for VROverlayFlags
impl WeakPtrTarget for VROverlayFlags
Auto Trait Implementations§
impl Freeze for VROverlayFlags
impl RefUnwindSafe for VROverlayFlags
impl Send for VROverlayFlags
impl Sync for VROverlayFlags
impl Unpin for VROverlayFlags
impl UnwindSafe for VROverlayFlags
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.