#[repr(C)]pub struct CUDA_ARRAY_MEMORY_REQUIREMENTS_st {
pub size: usize,
pub alignment: usize,
pub reserved: [c_uint; 4],
}
Expand description
CUDA array memory requirements
Fields§
§size: usize
< Total required memory size
alignment: usize
< alignment requirement
reserved: [c_uint; 4]
Trait Implementations§
Source§impl Clone for CUDA_ARRAY_MEMORY_REQUIREMENTS_st
impl Clone for CUDA_ARRAY_MEMORY_REQUIREMENTS_st
Source§fn clone(&self) -> CUDA_ARRAY_MEMORY_REQUIREMENTS_st
fn clone(&self) -> CUDA_ARRAY_MEMORY_REQUIREMENTS_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_MEMORY_REQUIREMENTS_st
Auto Trait Implementations§
impl Freeze for CUDA_ARRAY_MEMORY_REQUIREMENTS_st
impl RefUnwindSafe for CUDA_ARRAY_MEMORY_REQUIREMENTS_st
impl Send for CUDA_ARRAY_MEMORY_REQUIREMENTS_st
impl Sync for CUDA_ARRAY_MEMORY_REQUIREMENTS_st
impl Unpin for CUDA_ARRAY_MEMORY_REQUIREMENTS_st
impl UnwindSafe for CUDA_ARRAY_MEMORY_REQUIREMENTS_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