#[repr(C)]pub struct CUgraphExecUpdateResultInfo_st {
pub result: CUgraphExecUpdateResult,
pub errorNode: CUgraphNode,
pub errorFromNode: CUgraphNode,
}
Expand description
Result information returned by cuGraphExecUpdate
Fields§
§result: CUgraphExecUpdateResult
Gives more specific detail when a cuda graph update fails.
errorNode: CUgraphNode
The “to node” of the error edge when the topologies do not match. The error node when the error is associated with a specific node. NULL when the error is generic.
errorFromNode: CUgraphNode
The from node of error edge when the topologies do not match. Otherwise NULL.
Trait Implementations§
Source§impl Clone for CUgraphExecUpdateResultInfo_st
impl Clone for CUgraphExecUpdateResultInfo_st
Source§fn clone(&self) -> CUgraphExecUpdateResultInfo_st
fn clone(&self) -> CUgraphExecUpdateResultInfo_st
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 moreimpl Copy for CUgraphExecUpdateResultInfo_st
Auto Trait Implementations§
impl Freeze for CUgraphExecUpdateResultInfo_st
impl RefUnwindSafe for CUgraphExecUpdateResultInfo_st
impl !Send for CUgraphExecUpdateResultInfo_st
impl !Sync for CUgraphExecUpdateResultInfo_st
impl Unpin for CUgraphExecUpdateResultInfo_st
impl UnwindSafe for CUgraphExecUpdateResultInfo_st
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