#[non_exhaustive]#[repr(u32)]pub enum JitTarget {
Show 18 variants
Compute30 = 30,
Compute32 = 32,
Compute35 = 35,
Compute37 = 37,
Compute50 = 50,
Compute52 = 52,
Compute53 = 53,
Compute60 = 60,
Compute61 = 61,
Compute62 = 62,
Compute70 = 70,
Compute72 = 72,
Compute75 = 75,
Compute80 = 80,
Compute86 = 86,
Compute87 = 87,
Compute89 = 89,
Compute90 = 90,
}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.
Compute30 = 30
Compute32 = 32
Compute35 = 35
Compute37 = 37
Compute50 = 50
Compute52 = 52
Compute53 = 53
Compute60 = 60
Compute61 = 61
Compute62 = 62
Compute70 = 70
Compute72 = 72
Compute75 = 75
Compute80 = 80
Compute86 = 86
Compute87 = 87
Compute89 = 89
Compute90 = 90
Trait Implementations§
impl Copy for JitTarget
impl Eq for JitTarget
Source§impl From<CUjit_target_enum> for JitTarget
impl From<CUjit_target_enum> for JitTarget
Source§fn from(value: CUjit_target) -> Self
fn from(value: CUjit_target) -> Self
Converts to this type from the input type.
Source§impl From<JitTarget> for CUjit_target
impl From<JitTarget> for CUjit_target
impl StructuralPartialEq for JitTarget
Auto Trait Implementations§
impl Freeze for JitTarget
impl RefUnwindSafe for JitTarget
impl Send for JitTarget
impl Sync for JitTarget
impl Unpin for JitTarget
impl UnsafeUnpin for JitTarget
impl UnwindSafe for JitTarget
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