#[repr(C)]pub struct CUgraphExecUpdateResultInfo_st {
pub result: CUgraphExecUpdateResult,
pub errorNode: CUgraphNode,
pub errorFromNode: CUgraphNode,
}Expand description
Result information returned by cuGraphExecUpdate
Fields§
§result: CUgraphExecUpdateResultGives more specific detail when a cuda graph update fails.
errorNode: CUgraphNodeThe “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: CUgraphNodeThe 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 copy 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 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