#[repr(transparent)]pub struct CUgraphDependencyType(pub c_uint);
Expand description
Type annotations that can be applied to graph edges as part of ::CUgraphEdgeData. Type annotations that can be applied to graph edges as part of ::CUgraphEdgeData.
Tuple Fields§
§0: c_uint
Implementations§
Source§impl CUgraphDependencyType_enum
impl CUgraphDependencyType_enum
Sourcepub const CU_GRAPH_DEPENDENCY_TYPE_DEFAULT: CUgraphDependencyType_enum
pub const CU_GRAPH_DEPENDENCY_TYPE_DEFAULT: CUgraphDependencyType_enum
< This is an ordinary dependency.
Source§impl CUgraphDependencyType_enum
impl CUgraphDependencyType_enum
Sourcepub const CU_GRAPH_DEPENDENCY_TYPE_PROGRAMMATIC: CUgraphDependencyType_enum
pub const CU_GRAPH_DEPENDENCY_TYPE_PROGRAMMATIC: CUgraphDependencyType_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 ::CU_GRAPH_KERNEL_NODE_PORT_PROGRAMMATIC or ::CU_GRAPH_KERNEL_NODE_PORT_LAUNCH_ORDER outgoing port.
Trait Implementations§
Source§impl Clone for CUgraphDependencyType_enum
impl Clone for CUgraphDependencyType_enum
Source§fn clone(&self) -> CUgraphDependencyType_enum
fn clone(&self) -> CUgraphDependencyType_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 CUgraphDependencyType_enum
impl Debug for CUgraphDependencyType_enum
Source§impl Hash for CUgraphDependencyType_enum
impl Hash for CUgraphDependencyType_enum
impl Copy for CUgraphDependencyType_enum
impl Eq for CUgraphDependencyType_enum
impl StructuralPartialEq for CUgraphDependencyType_enum
Auto Trait Implementations§
impl Freeze for CUgraphDependencyType_enum
impl RefUnwindSafe for CUgraphDependencyType_enum
impl Send for CUgraphDependencyType_enum
impl Sync for CUgraphDependencyType_enum
impl Unpin for CUgraphDependencyType_enum
impl UnwindSafe for CUgraphDependencyType_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