#[repr(transparent)]pub struct CUgraphNode(pub *mut c_void);Expand description
Opaque handle to a single node within a CUgraph (CUgraphNode).
Returned by every cuGraphAdd*Node call and used as a dependency
endpoint when wiring graph edges.
Tuple Fields§
§0: *mut c_voidImplementations§
Trait Implementations§
Source§impl Clone for CUgraphNode
impl Clone for CUgraphNode
Source§fn clone(&self) -> CUgraphNode
fn clone(&self) -> CUgraphNode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CUgraphNode
impl Debug for CUgraphNode
Source§impl Default for CUgraphNode
impl Default for CUgraphNode
Source§impl Hash for CUgraphNode
impl Hash for CUgraphNode
Source§impl PartialEq for CUgraphNode
impl PartialEq for CUgraphNode
Source§fn eq(&self, other: &CUgraphNode) -> bool
fn eq(&self, other: &CUgraphNode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for CUgraphNode
impl Eq for CUgraphNode
impl Send for CUgraphNode
impl StructuralPartialEq for CUgraphNode
impl Sync for CUgraphNode
Auto Trait Implementations§
impl Freeze for CUgraphNode
impl RefUnwindSafe for CUgraphNode
impl Unpin for CUgraphNode
impl UnsafeUnpin for CUgraphNode
impl UnwindSafe for CUgraphNode
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