#[repr(C)]pub struct VkCopyImageToImageInfoEXT {
pub sType: VkStructureType,
pub pNext: *const c_void,
pub flags: VkHostImageCopyFlagsEXT,
pub srcImage: VkImage,
pub srcImageLayout: VkImageLayout,
pub dstImage: VkImage,
pub dstImageLayout: VkImageLayout,
pub regionCount: u32,
pub pRegions: *const VkImageCopy2,
}
Fields§
§sType: VkStructureType
§pNext: *const c_void
§flags: VkHostImageCopyFlagsEXT
§srcImage: VkImage
§srcImageLayout: VkImageLayout
§dstImage: VkImage
§dstImageLayout: VkImageLayout
§regionCount: u32
§pRegions: *const VkImageCopy2
Trait Implementations§
Source§impl Clone for VkCopyImageToImageInfoEXT
impl Clone for VkCopyImageToImageInfoEXT
Source§fn clone(&self) -> VkCopyImageToImageInfoEXT
fn clone(&self) -> VkCopyImageToImageInfoEXT
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 VkCopyImageToImageInfoEXT
impl Debug for VkCopyImageToImageInfoEXT
impl Copy for VkCopyImageToImageInfoEXT
Auto Trait Implementations§
impl Freeze for VkCopyImageToImageInfoEXT
impl RefUnwindSafe for VkCopyImageToImageInfoEXT
impl !Send for VkCopyImageToImageInfoEXT
impl !Sync for VkCopyImageToImageInfoEXT
impl Unpin for VkCopyImageToImageInfoEXT
impl UnwindSafe for VkCopyImageToImageInfoEXT
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