#[repr(transparent)]pub struct CUgraphExec(pub *mut c_void);Expand description
Opaque handle to an instantiated, executable CUDA graph (CUgraphExec).
Produced by cuGraphInstantiate; submitted to a stream by cuGraphLaunch
and destroyed by cuGraphExecDestroy.
Tuple Fields§
§0: *mut c_voidImplementations§
Trait Implementations§
Source§impl Clone for CUgraphExec
impl Clone for CUgraphExec
Source§fn clone(&self) -> CUgraphExec
fn clone(&self) -> CUgraphExec
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 CUgraphExec
impl Debug for CUgraphExec
Source§impl Default for CUgraphExec
impl Default for CUgraphExec
Source§impl Hash for CUgraphExec
impl Hash for CUgraphExec
Source§impl PartialEq for CUgraphExec
impl PartialEq for CUgraphExec
Source§fn eq(&self, other: &CUgraphExec) -> bool
fn eq(&self, other: &CUgraphExec) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for CUgraphExec
impl Eq for CUgraphExec
impl Send for CUgraphExec
impl StructuralPartialEq for CUgraphExec
impl Sync for CUgraphExec
Auto Trait Implementations§
impl Freeze for CUgraphExec
impl RefUnwindSafe for CUgraphExec
impl Unpin for CUgraphExec
impl UnsafeUnpin for CUgraphExec
impl UnwindSafe for CUgraphExec
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