#[repr(C)]pub struct CUDA_GRAPH_INSTANTIATE_PARAMS_st {
pub flags: cuuint64_t,
pub hUploadStream: CUstream,
pub hErrNode_out: CUgraphNode,
pub result_out: CUgraphInstantiateResult,
}
Expand description
Graph instantiation parameters
Fields§
§flags: cuuint64_t
< Instantiation flags
hUploadStream: CUstream
< Upload stream
hErrNode_out: CUgraphNode
< The node which caused instantiation to fail, if any
result_out: CUgraphInstantiateResult
< Whether instantiation was successful. If it failed, the reason why
Trait Implementations§
Source§impl Clone for CUDA_GRAPH_INSTANTIATE_PARAMS_st
impl Clone for CUDA_GRAPH_INSTANTIATE_PARAMS_st
Source§fn clone(&self) -> CUDA_GRAPH_INSTANTIATE_PARAMS_st
fn clone(&self) -> CUDA_GRAPH_INSTANTIATE_PARAMS_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 CUDA_GRAPH_INSTANTIATE_PARAMS_st
Auto Trait Implementations§
impl Freeze for CUDA_GRAPH_INSTANTIATE_PARAMS_st
impl RefUnwindSafe for CUDA_GRAPH_INSTANTIATE_PARAMS_st
impl !Send for CUDA_GRAPH_INSTANTIATE_PARAMS_st
impl !Sync for CUDA_GRAPH_INSTANTIATE_PARAMS_st
impl Unpin for CUDA_GRAPH_INSTANTIATE_PARAMS_st
impl UnwindSafe for CUDA_GRAPH_INSTANTIATE_PARAMS_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