#[non_exhaustive]#[repr(u32)]pub enum CUflushGPUDirectRDMAWritesTarget_enum {
CU_FLUSH_GPU_DIRECT_RDMA_WRITES_TARGET_CURRENT_CTX = 0,
}Expand description
The targets for ::cuFlushGPUDirectRDMAWrites
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.
CU_FLUSH_GPU_DIRECT_RDMA_WRITES_TARGET_CURRENT_CTX = 0
< Sets the target for ::cuFlushGPUDirectRDMAWrites() to the currently active CUDA device context.
Trait Implementations§
source§impl Clone for CUflushGPUDirectRDMAWritesTarget_enum
impl Clone for CUflushGPUDirectRDMAWritesTarget_enum
source§fn clone(&self) -> CUflushGPUDirectRDMAWritesTarget_enum
fn clone(&self) -> CUflushGPUDirectRDMAWritesTarget_enum
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 for CUflushGPUDirectRDMAWritesTarget_enum
impl PartialEq for CUflushGPUDirectRDMAWritesTarget_enum
source§fn eq(&self, other: &CUflushGPUDirectRDMAWritesTarget_enum) -> bool
fn eq(&self, other: &CUflushGPUDirectRDMAWritesTarget_enum) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for CUflushGPUDirectRDMAWritesTarget_enum
impl Eq for CUflushGPUDirectRDMAWritesTarget_enum
impl StructuralPartialEq for CUflushGPUDirectRDMAWritesTarget_enum
Auto Trait Implementations§
impl Freeze for CUflushGPUDirectRDMAWritesTarget_enum
impl RefUnwindSafe for CUflushGPUDirectRDMAWritesTarget_enum
impl Send for CUflushGPUDirectRDMAWritesTarget_enum
impl Sync for CUflushGPUDirectRDMAWritesTarget_enum
impl Unpin for CUflushGPUDirectRDMAWritesTarget_enum
impl UnwindSafe for CUflushGPUDirectRDMAWritesTarget_enum
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