Type Alias CopyImageInfo2KHR

Source
pub type CopyImageInfo2KHR = CopyImageInfo2;

Aliased Type§

struct CopyImageInfo2KHR {
    pub s_type: StructureType,
    pub p_next: *const c_void,
    pub src_image: Image,
    pub src_image_layout: ImageLayout,
    pub dst_image: Image,
    pub dst_image_layout: ImageLayout,
    pub region_count: u32,
    pub p_regions: *const ImageCopy2,
}

Fields§

§s_type: StructureType§p_next: *const c_void§src_image: Image§src_image_layout: ImageLayout§dst_image: Image§dst_image_layout: ImageLayout§region_count: u32§p_regions: *const ImageCopy2

Implementations

Trait Implementations

Source§

impl Clone for CopyImageInfo2

Source§

fn clone(&self) -> CopyImageInfo2

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 CopyImageInfo2

Source§

fn default() -> Self

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

impl Copy for CopyImageInfo2