#[repr(C)]pub struct cudaKernelNodeParams {
pub func: *mut c_void,
pub gridDim: dim3,
pub blockDim: dim3,
pub sharedMemBytes: c_uint,
pub kernelParams: *mut *mut c_void,
pub extra: *mut *mut c_void,
}
Fields§
§func: *mut c_void
§gridDim: dim3
§blockDim: dim3
§kernelParams: *mut *mut c_void
§extra: *mut *mut c_void
Trait Implementations§
Source§impl Clone for cudaKernelNodeParams
impl Clone for cudaKernelNodeParams
Source§fn clone(&self) -> cudaKernelNodeParams
fn clone(&self) -> cudaKernelNodeParams
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 moreSource§impl Debug for cudaKernelNodeParams
impl Debug for cudaKernelNodeParams
Source§impl Default for cudaKernelNodeParams
impl Default for cudaKernelNodeParams
Source§impl Hash for cudaKernelNodeParams
impl Hash for cudaKernelNodeParams
Source§impl Ord for cudaKernelNodeParams
impl Ord for cudaKernelNodeParams
Source§fn cmp(&self, other: &cudaKernelNodeParams) -> Ordering
fn cmp(&self, other: &cudaKernelNodeParams) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for cudaKernelNodeParams
impl PartialEq for cudaKernelNodeParams
Source§impl PartialOrd for cudaKernelNodeParams
impl PartialOrd for cudaKernelNodeParams
impl Copy for cudaKernelNodeParams
impl Eq for cudaKernelNodeParams
impl StructuralPartialEq for cudaKernelNodeParams
Auto Trait Implementations§
impl Freeze for cudaKernelNodeParams
impl RefUnwindSafe for cudaKernelNodeParams
impl !Send for cudaKernelNodeParams
impl !Sync for cudaKernelNodeParams
impl Unpin for cudaKernelNodeParams
impl UnwindSafe for cudaKernelNodeParams
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