#[repr(transparent)]pub struct CUgraphConditionalNodeType_enum(pub c_uint);
Expand description
Conditional node types
Tuple Fields§
§0: c_uint
Implementations§
Source§impl CUgraphConditionalNodeType_enum
impl CUgraphConditionalNodeType_enum
Sourcepub const CU_GRAPH_COND_TYPE_IF: CUgraphConditionalNodeType_enum
pub const CU_GRAPH_COND_TYPE_IF: CUgraphConditionalNodeType_enum
< Conditional ‘if’ Node. Body executed once if condition value is non-zero.
Source§impl CUgraphConditionalNodeType_enum
impl CUgraphConditionalNodeType_enum
Sourcepub const CU_GRAPH_COND_TYPE_WHILE: CUgraphConditionalNodeType_enum
pub const CU_GRAPH_COND_TYPE_WHILE: CUgraphConditionalNodeType_enum
< Conditional ‘while’ Node. Body executed repeatedly while condition value is non-zero.
Trait Implementations§
Source§impl Clone for CUgraphConditionalNodeType_enum
impl Clone for CUgraphConditionalNodeType_enum
Source§fn clone(&self) -> CUgraphConditionalNodeType_enum
fn clone(&self) -> CUgraphConditionalNodeType_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 PartialEq for CUgraphConditionalNodeType_enum
impl PartialEq for CUgraphConditionalNodeType_enum
Source§fn eq(&self, other: &CUgraphConditionalNodeType_enum) -> bool
fn eq(&self, other: &CUgraphConditionalNodeType_enum) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for CUgraphConditionalNodeType_enum
impl Eq for CUgraphConditionalNodeType_enum
impl StructuralPartialEq for CUgraphConditionalNodeType_enum
Auto Trait Implementations§
impl Freeze for CUgraphConditionalNodeType_enum
impl RefUnwindSafe for CUgraphConditionalNodeType_enum
impl Send for CUgraphConditionalNodeType_enum
impl Sync for CUgraphConditionalNodeType_enum
impl Unpin for CUgraphConditionalNodeType_enum
impl UnwindSafe for CUgraphConditionalNodeType_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