#[repr(C)]pub struct CUDA_EXT_SEM_SIGNAL_NODE_PARAMS_st {
pub extSemArray: *mut CUexternalSemaphore,
pub paramsArray: *const CUDA_EXTERNAL_SEMAPHORE_SIGNAL_PARAMS,
pub numExtSems: c_uint,
}
Expand description
Semaphore signal node parameters
Fields§
§extSemArray: *mut CUexternalSemaphore
< Array of external semaphore handles.
paramsArray: *const CUDA_EXTERNAL_SEMAPHORE_SIGNAL_PARAMS
< Array of external semaphore signal parameters.
numExtSems: c_uint
< Number of handles and parameters supplied in extSemArray and paramsArray.
Trait Implementations§
Source§impl Clone for CUDA_EXT_SEM_SIGNAL_NODE_PARAMS_st
impl Clone for CUDA_EXT_SEM_SIGNAL_NODE_PARAMS_st
Source§fn clone(&self) -> CUDA_EXT_SEM_SIGNAL_NODE_PARAMS_st
fn clone(&self) -> CUDA_EXT_SEM_SIGNAL_NODE_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_EXT_SEM_SIGNAL_NODE_PARAMS_st
Auto Trait Implementations§
impl Freeze for CUDA_EXT_SEM_SIGNAL_NODE_PARAMS_st
impl RefUnwindSafe for CUDA_EXT_SEM_SIGNAL_NODE_PARAMS_st
impl !Send for CUDA_EXT_SEM_SIGNAL_NODE_PARAMS_st
impl !Sync for CUDA_EXT_SEM_SIGNAL_NODE_PARAMS_st
impl Unpin for CUDA_EXT_SEM_SIGNAL_NODE_PARAMS_st
impl UnwindSafe for CUDA_EXT_SEM_SIGNAL_NODE_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