pub struct CudaEvent(/* private fields */);Expand description
A CUDA event handle.
Wraps the raw CUevent from the driver API. The event is not
automatically destroyed on drop — call event_destroy explicitly.
Implementations§
Trait Implementations§
impl Copy for CudaEvent
impl Eq for CudaEvent
impl StructuralPartialEq for CudaEvent
Auto Trait Implementations§
impl Freeze for CudaEvent
impl RefUnwindSafe for CudaEvent
impl Send for CudaEvent
impl Sync for CudaEvent
impl Unpin for CudaEvent
impl UnsafeUnpin for CudaEvent
impl UnwindSafe for CudaEvent
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