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