pub enum ApplicationType {
Other = 0,
Scene = 1,
Overlay = 2,
Background = 3,
Utility = 4,
VRMonitor = 5,
SteamWatchdog = 6,
Bootstrapper = 7,
}
Variants§
Other = 0
Some other kind of application that isn’t covered by the other entries
Scene = 1
Application will submit 3D frames
Overlay = 2
Application only interacts with overlays
Background = 3
Application should not start SteamVR if it’s not already running, and should not keep it running if everything else quits.
Utility = 4
Init should not try to load any drivers. The application needs access to utility interfaces (like IVRSettings and IVRApplications) but not hardware.
VRMonitor = 5
Reserved for vrmonitor
SteamWatchdog = 6
Reserved for Steam
Bootstrapper = 7
Start up SteamVR
Trait Implementations§
Source§impl Clone for ApplicationType
impl Clone for ApplicationType
Source§fn clone(&self) -> ApplicationType
fn clone(&self) -> ApplicationType
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 ApplicationType
impl Debug for ApplicationType
Source§impl PartialEq for ApplicationType
impl PartialEq for ApplicationType
impl Copy for ApplicationType
impl Eq for ApplicationType
impl StructuralPartialEq for ApplicationType
Auto Trait Implementations§
impl Freeze for ApplicationType
impl RefUnwindSafe for ApplicationType
impl Send for ApplicationType
impl Sync for ApplicationType
impl Unpin for ApplicationType
impl UnwindSafe for ApplicationType
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