#[repr(transparent)]pub struct CUgraph(pub *mut c_void);Expand description
Opaque handle to a CUDA graph (CUgraph).
A graph is a mutable DAG of operations created by cuGraphCreate,
populated by cuGraphAdd*Node, and finalised into an executable form
via cuGraphInstantiate.
Tuple Fields§
§0: *mut c_voidImplementations§
Trait Implementations§
impl Copy for CUgraph
impl Eq for CUgraph
impl Send for CUgraph
impl StructuralPartialEq for CUgraph
impl Sync for CUgraph
Auto Trait Implementations§
impl Freeze for CUgraph
impl RefUnwindSafe for CUgraph
impl Unpin for CUgraph
impl UnsafeUnpin for CUgraph
impl UnwindSafe for CUgraph
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