#[repr(C)]pub struct CUDA_ARRAY3D_DESCRIPTOR_st {
pub Width: usize,
pub Height: usize,
pub Depth: usize,
pub Format: CUarray_format,
pub NumChannels: c_uint,
pub Flags: c_uint,
}
Expand description
3D array descriptor
Fields§
§Width: usize
< Width of 3D array
Height: usize
< Height of 3D array
Depth: usize
< Depth of 3D array
Format: CUarray_format
< Array format
NumChannels: c_uint
< Channels per array element
Flags: c_uint
< Flags
Trait Implementations§
Source§impl Clone for CUDA_ARRAY3D_DESCRIPTOR_st
impl Clone for CUDA_ARRAY3D_DESCRIPTOR_st
Source§fn clone(&self) -> CUDA_ARRAY3D_DESCRIPTOR_st
fn clone(&self) -> CUDA_ARRAY3D_DESCRIPTOR_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 moreSource§impl Debug for CUDA_ARRAY3D_DESCRIPTOR_st
impl Debug for CUDA_ARRAY3D_DESCRIPTOR_st
impl Copy for CUDA_ARRAY3D_DESCRIPTOR_st
Auto Trait Implementations§
impl Freeze for CUDA_ARRAY3D_DESCRIPTOR_st
impl RefUnwindSafe for CUDA_ARRAY3D_DESCRIPTOR_st
impl Send for CUDA_ARRAY3D_DESCRIPTOR_st
impl Sync for CUDA_ARRAY3D_DESCRIPTOR_st
impl Unpin for CUDA_ARRAY3D_DESCRIPTOR_st
impl UnwindSafe for CUDA_ARRAY3D_DESCRIPTOR_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