#[non_exhaustive]#[repr(u32)]pub enum cudaGPUDirectRDMAWritesOrdering {
cudaGPUDirectRDMAWritesOrderingNone = 0,
cudaGPUDirectRDMAWritesOrderingOwner = 100,
cudaGPUDirectRDMAWritesOrderingAllDevices = 200,
}
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.
cudaGPUDirectRDMAWritesOrderingNone = 0
cudaGPUDirectRDMAWritesOrderingOwner = 100
cudaGPUDirectRDMAWritesOrderingAllDevices = 200
Trait Implementations§
source§impl Clone for cudaGPUDirectRDMAWritesOrdering
impl Clone for cudaGPUDirectRDMAWritesOrdering
source§fn clone(&self) -> cudaGPUDirectRDMAWritesOrdering
fn clone(&self) -> cudaGPUDirectRDMAWritesOrdering
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 cudaGPUDirectRDMAWritesOrdering
impl PartialEq for cudaGPUDirectRDMAWritesOrdering
source§fn eq(&self, other: &cudaGPUDirectRDMAWritesOrdering) -> bool
fn eq(&self, other: &cudaGPUDirectRDMAWritesOrdering) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for cudaGPUDirectRDMAWritesOrdering
impl Eq for cudaGPUDirectRDMAWritesOrdering
impl StructuralPartialEq for cudaGPUDirectRDMAWritesOrdering
Auto Trait Implementations§
impl RefUnwindSafe for cudaGPUDirectRDMAWritesOrdering
impl Send for cudaGPUDirectRDMAWritesOrdering
impl Sync for cudaGPUDirectRDMAWritesOrdering
impl Unpin for cudaGPUDirectRDMAWritesOrdering
impl UnwindSafe for cudaGPUDirectRDMAWritesOrdering
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