#[non_exhaustive]#[repr(u32)]pub enum NVSDK_NGX_EngineType {
NVSDK_NGX_ENGINE_TYPE_CUSTOM = 0,
NVSDK_NGX_ENGINE_TYPE_UNREAL = 1,
NVSDK_NGX_ENGINE_TYPE_UNITY = 2,
NVSDK_NGX_ENGINE_TYPE_OMNIVERSE = 3,
NVSDK_NGX_ENGINE_COUNT = 4,
}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.
NVSDK_NGX_ENGINE_TYPE_CUSTOM = 0
NVSDK_NGX_ENGINE_TYPE_UNREAL = 1
NVSDK_NGX_ENGINE_TYPE_UNITY = 2
NVSDK_NGX_ENGINE_TYPE_OMNIVERSE = 3
NVSDK_NGX_ENGINE_COUNT = 4
Trait Implementations§
Source§impl Clone for NVSDK_NGX_EngineType
impl Clone for NVSDK_NGX_EngineType
Source§fn clone(&self) -> NVSDK_NGX_EngineType
fn clone(&self) -> NVSDK_NGX_EngineType
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 NVSDK_NGX_EngineType
impl Debug for NVSDK_NGX_EngineType
Source§impl Hash for NVSDK_NGX_EngineType
impl Hash for NVSDK_NGX_EngineType
Source§impl PartialEq for NVSDK_NGX_EngineType
impl PartialEq for NVSDK_NGX_EngineType
impl Copy for NVSDK_NGX_EngineType
impl Eq for NVSDK_NGX_EngineType
impl StructuralPartialEq for NVSDK_NGX_EngineType
Auto Trait Implementations§
impl Freeze for NVSDK_NGX_EngineType
impl RefUnwindSafe for NVSDK_NGX_EngineType
impl Send for NVSDK_NGX_EngineType
impl Sync for NVSDK_NGX_EngineType
impl Unpin for NVSDK_NGX_EngineType
impl UnwindSafe for NVSDK_NGX_EngineType
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