[][src]Struct openxr::ExtensionSet

#[non_exhaustive]pub struct ExtensionSet {
    pub epic_view_configuration_fov: bool,
    pub ext_performance_settings: bool,
    pub ext_thermal_query: bool,
    pub ext_debug_utils: bool,
    pub ext_eye_gaze_interaction: bool,
    pub ext_view_configuration_depth_range: bool,
    pub ext_conformance_automation: bool,
    pub ext_hand_tracking: bool,
    pub ext_samsung_odyssey_controller: bool,
    pub ext_hp_mixed_reality_controller: bool,
    pub extx_overlay: bool,
    pub huawei_controller_interaction: bool,
    pub khr_composition_layer_cube: bool,
    pub khr_composition_layer_depth: bool,
    pub khr_vulkan_swapchain_format_list: bool,
    pub khr_composition_layer_cylinder: bool,
    pub khr_composition_layer_equirect: bool,
    pub khr_opengl_enable: bool,
    pub khr_opengl_es_enable: bool,
    pub khr_vulkan_enable: bool,
    pub khr_visibility_mask: bool,
    pub khr_convert_timespec_time: bool,
    pub mnd_headless: bool,
    pub mnd_swapchain_usage_input_attachment_bit: bool,
    pub mndx_egl_enable: bool,
    pub msft_unbounded_reference_space: bool,
    pub msft_spatial_anchor: bool,
    pub msft_spatial_graph_bridge: bool,
    pub msft_hand_interaction: bool,
    pub msft_hand_tracking_mesh: bool,
    pub msft_secondary_view_configuration: bool,
    pub msft_first_person_observer: bool,
    pub valve_analog_threshold: bool,
    pub varjo_quad_views: bool,
    pub other: Vec<String>,
}

A subset of known extensions

Fields (Non-exhaustive)

Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
epic_view_configuration_fov: boolext_performance_settings: boolext_thermal_query: boolext_debug_utils: boolext_eye_gaze_interaction: boolext_view_configuration_depth_range: boolext_conformance_automation: boolext_hand_tracking: boolext_samsung_odyssey_controller: boolext_hp_mixed_reality_controller: boolextx_overlay: boolhuawei_controller_interaction: boolkhr_composition_layer_cube: boolkhr_composition_layer_depth: boolkhr_vulkan_swapchain_format_list: boolkhr_composition_layer_cylinder: boolkhr_composition_layer_equirect: boolkhr_opengl_enable: boolkhr_opengl_es_enable: boolkhr_vulkan_enable: boolkhr_visibility_mask: boolkhr_convert_timespec_time: boolmnd_headless: boolmnd_swapchain_usage_input_attachment_bit: boolmndx_egl_enable: boolmsft_unbounded_reference_space: boolmsft_spatial_anchor: boolmsft_spatial_graph_bridge: boolmsft_hand_interaction: boolmsft_hand_tracking_mesh: boolmsft_secondary_view_configuration: boolmsft_first_person_observer: boolvalve_analog_threshold: boolvarjo_quad_views: boolother: Vec<String>

Extensions unknown to the high-level bindings

Trait Implementations

impl Clone for ExtensionSet[src]

impl Debug for ExtensionSet[src]

impl Default for ExtensionSet[src]

impl Eq for ExtensionSet[src]

impl PartialEq<ExtensionSet> for ExtensionSet[src]

impl StructuralEq for ExtensionSet[src]

impl StructuralPartialEq for ExtensionSet[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.