Type Alias ash::vk::CopyBufferToImageInfo2KHR

source ·
pub type CopyBufferToImageInfo2KHR = CopyBufferToImageInfo2;

Aliased Type§

struct CopyBufferToImageInfo2KHR {
    pub s_type: StructureType,
    pub p_next: *const c_void,
    pub src_buffer: Buffer,
    pub dst_image: Image,
    pub dst_image_layout: ImageLayout,
    pub region_count: u32,
    pub p_regions: *const BufferImageCopy2,
}

Fields§

§s_type: StructureType§p_next: *const c_void§src_buffer: Buffer§dst_image: Image§dst_image_layout: ImageLayout§region_count: u32§p_regions: *const BufferImageCopy2

Implementations

Trait Implementations

source§

impl Debug for CopyBufferToImageInfo2

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl TaggedStructure for CopyBufferToImageInfo2

source§

const STRUCTURE_TYPE: StructureType = StructureType::COPY_BUFFER_TO_IMAGE_INFO_2

source§

impl Clone for CopyBufferToImageInfo2

source§

fn clone(&self) -> CopyBufferToImageInfo2

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Default for CopyBufferToImageInfo2

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Copy for CopyBufferToImageInfo2