#[repr(transparent)]pub struct CUlibrary(pub *mut c_void);Expand description
Opaque handle to a CUDA library (CUDA 12.8+ JIT library API).
Retrieved via cuKernelGetLibrary to identify the JIT-compiled
library that contains a given kernel.
Tuple Fields§
§0: *mut c_voidImplementations§
Trait Implementations§
impl Copy for CUlibrary
impl Eq for CUlibrary
impl Send for CUlibrary
impl StructuralPartialEq for CUlibrary
impl Sync for CUlibrary
Auto Trait Implementations§
impl Freeze for CUlibrary
impl RefUnwindSafe for CUlibrary
impl Unpin for CUlibrary
impl UnsafeUnpin for CUlibrary
impl UnwindSafe for CUlibrary
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