#[repr(C)]pub struct cudaExternalSemaphoreWaitParams_v1 {
pub params: cudaExternalSemaphoreWaitParams_v1__bindgen_ty_1,
pub flags: c_uint,
}
Expand description
External semaphore wait parameters(deprecated)
Fields§
§params: cudaExternalSemaphoreWaitParams_v1__bindgen_ty_1
§flags: c_uint
Only when ::cudaExternalSemaphoreSignalParams is used to signal a ::cudaExternalSemaphore_t of type ::cudaExternalSemaphoreHandleTypeNvSciSync, the valid flag is ::cudaExternalSemaphoreSignalSkipNvSciBufMemSync: which indicates that while waiting for the ::cudaExternalSemaphore_t, no memory synchronization operations should be performed for any external memory object imported as ::cudaExternalMemoryHandleTypeNvSciBuf. For all other types of ::cudaExternalSemaphore_t, flags must be zero.
Trait Implementations§
Source§impl Clone for cudaExternalSemaphoreWaitParams_v1
impl Clone for cudaExternalSemaphoreWaitParams_v1
Source§fn clone(&self) -> cudaExternalSemaphoreWaitParams_v1
fn clone(&self) -> cudaExternalSemaphoreWaitParams_v1
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 cudaExternalSemaphoreWaitParams_v1
Auto Trait Implementations§
impl Freeze for cudaExternalSemaphoreWaitParams_v1
impl RefUnwindSafe for cudaExternalSemaphoreWaitParams_v1
impl !Send for cudaExternalSemaphoreWaitParams_v1
impl !Sync for cudaExternalSemaphoreWaitParams_v1
impl Unpin for cudaExternalSemaphoreWaitParams_v1
impl UnwindSafe for cudaExternalSemaphoreWaitParams_v1
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