#[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,
}
Fields§
§data: *mut c_void
§desc: hipChannelFormatDesc
§type_: c_uint
§width: c_uint
§height: c_uint
§depth: c_uint
§min_mipmap_level: c_uint
§max_mipmap_level: c_uint
§flags: c_uint
§format: hipArray_Format
§num_channels: c_uint
Trait Implementations§
Source§impl Clone for hipMipmappedArray
impl Clone for hipMipmappedArray
Source§fn clone(&self) -> hipMipmappedArray
fn clone(&self) -> hipMipmappedArray
Returns a copy 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