#[repr(u32)]
#[non_exhaustive]
pub enum retro_hw_render_interface_type {
RETRO_HW_RENDER_INTERFACE_VULKAN,
RETRO_HW_RENDER_INTERFACE_D3D9,
RETRO_HW_RENDER_INTERFACE_D3D10,
RETRO_HW_RENDER_INTERFACE_D3D11,
RETRO_HW_RENDER_INTERFACE_D3D12,
RETRO_HW_RENDER_INTERFACE_GSKIT_PS2,
RETRO_HW_RENDER_INTERFACE_DUMMY,
}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.
RETRO_HW_RENDER_INTERFACE_VULKAN
RETRO_HW_RENDER_INTERFACE_D3D9
RETRO_HW_RENDER_INTERFACE_D3D10
RETRO_HW_RENDER_INTERFACE_D3D11
RETRO_HW_RENDER_INTERFACE_D3D12
RETRO_HW_RENDER_INTERFACE_GSKIT_PS2
RETRO_HW_RENDER_INTERFACE_DUMMY
Trait Implementations§
source§impl Clone for retro_hw_render_interface_type
impl Clone for retro_hw_render_interface_type
source§fn clone(&self) -> retro_hw_render_interface_type
fn clone(&self) -> retro_hw_render_interface_type
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 PartialEq<retro_hw_render_interface_type> for retro_hw_render_interface_type
impl PartialEq<retro_hw_render_interface_type> for retro_hw_render_interface_type
source§fn eq(&self, other: &retro_hw_render_interface_type) -> bool
fn eq(&self, other: &retro_hw_render_interface_type) -> bool
This method tests for
self and other values to be equal, and is used
by ==.