#[repr(transparent)]pub struct cudaGraphDependencyType_enum(pub c_uint);
Expand description
Type annotations that can be applied to graph edges as part of ::cudaGraphEdgeData.
Tuple Fields§
§0: c_uint
Implementations§
Source§impl cudaGraphDependencyType_enum
impl cudaGraphDependencyType_enum
Sourcepub const cudaGraphDependencyTypeDefault: cudaGraphDependencyType_enum
pub const cudaGraphDependencyTypeDefault: cudaGraphDependencyType_enum
< This is an ordinary dependency.
Source§impl cudaGraphDependencyType_enum
impl cudaGraphDependencyType_enum
Sourcepub const cudaGraphDependencyTypeProgrammatic: cudaGraphDependencyType_enum
pub const cudaGraphDependencyTypeProgrammatic: cudaGraphDependencyType_enum
< This dependency type allows the downstream node to use \c cudaGridDependencySynchronize(). It may only be used between kernel nodes, and must be used with either the ::cudaGraphKernelNodePortProgrammatic or ::cudaGraphKernelNodePortLaunchCompletion outgoing port.
Trait Implementations§
Source§impl Clone for cudaGraphDependencyType_enum
impl Clone for cudaGraphDependencyType_enum
Source§fn clone(&self) -> cudaGraphDependencyType_enum
fn clone(&self) -> cudaGraphDependencyType_enum
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 cudaGraphDependencyType_enum
impl Debug for cudaGraphDependencyType_enum
Source§impl Hash for cudaGraphDependencyType_enum
impl Hash for cudaGraphDependencyType_enum
Source§impl PartialEq for cudaGraphDependencyType_enum
impl PartialEq for cudaGraphDependencyType_enum
Source§fn eq(&self, other: &cudaGraphDependencyType_enum) -> bool
fn eq(&self, other: &cudaGraphDependencyType_enum) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for cudaGraphDependencyType_enum
impl Eq for cudaGraphDependencyType_enum
impl StructuralPartialEq for cudaGraphDependencyType_enum
Auto Trait Implementations§
impl Freeze for cudaGraphDependencyType_enum
impl RefUnwindSafe for cudaGraphDependencyType_enum
impl Send for cudaGraphDependencyType_enum
impl Sync for cudaGraphDependencyType_enum
impl Unpin for cudaGraphDependencyType_enum
impl UnwindSafe for cudaGraphDependencyType_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