#[repr(C)]pub struct cudaArraySparseProperties {
pub tileExtent: cudaArraySparseProperties__bindgen_ty_1,
pub miptailFirstLevel: c_uint,
pub miptailSize: c_ulonglong,
pub flags: c_uint,
pub reserved: [c_uint; 4],
}
Expand description
Sparse CUDA array and CUDA mipmapped array properties
Fields§
§tileExtent: cudaArraySparseProperties__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 ::cudaArraySparsePropertiesSingleMipTail
reserved: [c_uint; 4]
Trait Implementations§
Source§impl Clone for cudaArraySparseProperties
impl Clone for cudaArraySparseProperties
Source§fn clone(&self) -> cudaArraySparseProperties
fn clone(&self) -> cudaArraySparseProperties
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 cudaArraySparseProperties
impl Debug for cudaArraySparseProperties
impl Copy for cudaArraySparseProperties
Auto Trait Implementations§
impl Freeze for cudaArraySparseProperties
impl RefUnwindSafe for cudaArraySparseProperties
impl Send for cudaArraySparseProperties
impl Sync for cudaArraySparseProperties
impl Unpin for cudaArraySparseProperties
impl UnwindSafe for cudaArraySparseProperties
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