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