Enum openvr::ApplicationType [] [src]

pub enum ApplicationType {
    Other,
    Scene,
    Overlay,
    Background,
    Utility,
    VRMonitor,
    SteamWatchdog,
    Bootstrapper,
}

Variants

Some other kind of application that isn't covered by the other entries

Application will submit 3D frames

Application only interacts with overlays

Application should not start SteamVR if it's not already running, and should not keep it running if everything else quits.

Init should not try to load any drivers. The application needs access to utility interfaces (like IVRSettings and IVRApplications) but not hardware.

Reserved for vrmonitor

Reserved for Steam

Start up SteamVR

Trait Implementations

impl Debug for ApplicationType
[src]

[src]

Formats the value using the given formatter. Read more

impl Copy for ApplicationType
[src]

impl Clone for ApplicationType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for ApplicationType
[src]

impl PartialEq for ApplicationType
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

Auto Trait Implementations