#[repr(C)]pub struct hipMipmappedArray {
pub data: *mut c_void,
pub desc: hipChannelFormatDesc,
pub type_: c_uint,
pub width: c_uint,
pub height: c_uint,
pub depth: c_uint,
pub min_mipmap_level: c_uint,
pub max_mipmap_level: c_uint,
pub flags: c_uint,
pub format: hipArray_Format,
pub num_channels: c_uint,
}Expand description
HIP mipmapped array
Fields§
§data: *mut c_void< Data pointer of the mipmapped array
desc: hipChannelFormatDesc< Description of the mipmapped array
type_: c_uint< Type of the mipmapped array
width: c_uint< Width of the mipmapped array
height: c_uint< Height of the mipmapped array
depth: c_uint< Depth of the mipmapped array
min_mipmap_level: c_uint< Minimum level of the mipmapped array
max_mipmap_level: c_uint< Maximum level of the mipmapped array
flags: c_uint< Flags of the mipmapped array
format: hipArray_Format< Format of the mipmapped array
num_channels: c_uint< Number of channels of the mipmapped array
Trait Implementations§
Source§impl Clone for hipMipmappedArray
impl Clone for hipMipmappedArray
Source§fn clone(&self) -> hipMipmappedArray
fn clone(&self) -> hipMipmappedArray
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 hipMipmappedArray
impl Debug for hipMipmappedArray
impl Copy for hipMipmappedArray
Auto Trait Implementations§
impl Freeze for hipMipmappedArray
impl RefUnwindSafe for hipMipmappedArray
impl !Send for hipMipmappedArray
impl !Sync for hipMipmappedArray
impl Unpin for hipMipmappedArray
impl UnwindSafe for hipMipmappedArray
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