#[non_exhaustive]#[repr(u32)]pub enum cudaGraphDebugDotFlags {
cudaGraphDebugDotFlagsVerbose = 1,
cudaGraphDebugDotFlagsKernelNodeParams = 4,
cudaGraphDebugDotFlagsMemcpyNodeParams = 8,
cudaGraphDebugDotFlagsMemsetNodeParams = 16,
cudaGraphDebugDotFlagsHostNodeParams = 32,
cudaGraphDebugDotFlagsEventNodeParams = 64,
cudaGraphDebugDotFlagsExtSemasSignalNodeParams = 128,
cudaGraphDebugDotFlagsExtSemasWaitNodeParams = 256,
cudaGraphDebugDotFlagsKernelNodeAttributes = 512,
cudaGraphDebugDotFlagsHandles = 1_024,
}
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.
cudaGraphDebugDotFlagsVerbose = 1
cudaGraphDebugDotFlagsKernelNodeParams = 4
cudaGraphDebugDotFlagsMemcpyNodeParams = 8
cudaGraphDebugDotFlagsMemsetNodeParams = 16
cudaGraphDebugDotFlagsHostNodeParams = 32
cudaGraphDebugDotFlagsEventNodeParams = 64
cudaGraphDebugDotFlagsExtSemasSignalNodeParams = 128
cudaGraphDebugDotFlagsExtSemasWaitNodeParams = 256
cudaGraphDebugDotFlagsKernelNodeAttributes = 512
cudaGraphDebugDotFlagsHandles = 1_024
Trait Implementations§
source§impl Clone for cudaGraphDebugDotFlags
impl Clone for cudaGraphDebugDotFlags
source§fn clone(&self) -> cudaGraphDebugDotFlags
fn clone(&self) -> cudaGraphDebugDotFlags
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 Debug for cudaGraphDebugDotFlags
impl Debug for cudaGraphDebugDotFlags
source§impl Hash for cudaGraphDebugDotFlags
impl Hash for cudaGraphDebugDotFlags
source§impl PartialEq for cudaGraphDebugDotFlags
impl PartialEq for cudaGraphDebugDotFlags
source§fn eq(&self, other: &cudaGraphDebugDotFlags) -> bool
fn eq(&self, other: &cudaGraphDebugDotFlags) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for cudaGraphDebugDotFlags
impl Eq for cudaGraphDebugDotFlags
impl StructuralPartialEq for cudaGraphDebugDotFlags
Auto Trait Implementations§
impl RefUnwindSafe for cudaGraphDebugDotFlags
impl Send for cudaGraphDebugDotFlags
impl Sync for cudaGraphDebugDotFlags
impl Unpin for cudaGraphDebugDotFlags
impl UnwindSafe for cudaGraphDebugDotFlags
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