#[repr(C)]pub struct CopyImageToImageInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub flags: HostImageCopyFlags,
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,
}Expand description
VkCopyImageToImageInfo
Provided by VK_BASE_VERSION_1_4.
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_COPY_IMAGE_TO_IMAGE_INFO.
p_next: *const c_voidOptional, may be null.
flags: HostImageCopyFlags§src_image: Image§src_image_layout: ImageLayout§dst_image: Image§dst_image_layout: ImageLayout§region_count: u32Length of p_regions.
p_regions: *const ImageCopy2Implementations§
Source§impl CopyImageToImageInfo
impl CopyImageToImageInfo
Sourcepub fn builder<'a>() -> CopyImageToImageInfoBuilder<'a>
pub fn builder<'a>() -> CopyImageToImageInfoBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for CopyImageToImageInfo
impl Clone for CopyImageToImageInfo
Source§fn clone(&self) -> CopyImageToImageInfo
fn clone(&self) -> CopyImageToImageInfo
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 CopyImageToImageInfo
impl Debug for CopyImageToImageInfo
Source§impl Default for CopyImageToImageInfo
impl Default for CopyImageToImageInfo
impl Copy for CopyImageToImageInfo
Auto Trait Implementations§
impl Freeze for CopyImageToImageInfo
impl RefUnwindSafe for CopyImageToImageInfo
impl !Send for CopyImageToImageInfo
impl !Sync for CopyImageToImageInfo
impl Unpin for CopyImageToImageInfo
impl UnsafeUnpin for CopyImageToImageInfo
impl UnwindSafe for CopyImageToImageInfo
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