#[repr(C)]pub struct CUDA_ARRAY_SPARSE_PROPERTIES_st {
pub tileExtent: CUDA_ARRAY_SPARSE_PROPERTIES_st__bindgen_ty_1,
pub miptailFirstLevel: c_uint,
pub miptailSize: c_ulonglong,
pub flags: c_uint,
pub reserved: [c_uint; 4],
}
Expand description
CUDA array sparse properties
Fields§
§tileExtent: CUDA_ARRAY_SPARSE_PROPERTIES_st__bindgen_ty_1
§miptailFirstLevel: c_uint
First mip level at which the mip tail begins.
miptailSize: c_ulonglong
Total size of the mip tail.
flags: c_uint
Flags will either be zero or ::CU_ARRAY_SPARSE_PROPERTIES_SINGLE_MIPTAIL
reserved: [c_uint; 4]
Trait Implementations§
Source§impl Clone for CUDA_ARRAY_SPARSE_PROPERTIES_st
impl Clone for CUDA_ARRAY_SPARSE_PROPERTIES_st
Source§fn clone(&self) -> CUDA_ARRAY_SPARSE_PROPERTIES_st
fn clone(&self) -> CUDA_ARRAY_SPARSE_PROPERTIES_st
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 CUDA_ARRAY_SPARSE_PROPERTIES_st
Auto Trait Implementations§
impl Freeze for CUDA_ARRAY_SPARSE_PROPERTIES_st
impl RefUnwindSafe for CUDA_ARRAY_SPARSE_PROPERTIES_st
impl Send for CUDA_ARRAY_SPARSE_PROPERTIES_st
impl Sync for CUDA_ARRAY_SPARSE_PROPERTIES_st
impl Unpin for CUDA_ARRAY_SPARSE_PROPERTIES_st
impl UnwindSafe for CUDA_ARRAY_SPARSE_PROPERTIES_st
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