#[repr(C)]pub struct VkCopyImageToMemoryInfo {
pub sType: VkStructureType,
pub pNext: *const c_void,
pub flags: VkHostImageCopyFlags,
pub srcImage: VkImage,
pub srcImageLayout: VkImageLayout,
pub regionCount: u32,
pub pRegions: *const VkImageToMemoryCopy,
}Expand description
struct VkCopyImageToMemoryInfo from VK_VERSION_1_4
Fields§
§sType: VkStructureType§pNext: *const c_void§flags: VkHostImageCopyFlags§srcImage: VkImage§srcImageLayout: VkImageLayout§regionCount: u32§pRegions: *const VkImageToMemoryCopyTrait Implementations§
Source§impl Clone for VkCopyImageToMemoryInfo
impl Clone for VkCopyImageToMemoryInfo
Source§fn clone(&self) -> VkCopyImageToMemoryInfo
fn clone(&self) -> VkCopyImageToMemoryInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for VkCopyImageToMemoryInfo
Auto Trait Implementations§
impl !Send for VkCopyImageToMemoryInfo
impl !Sync for VkCopyImageToMemoryInfo
impl Freeze for VkCopyImageToMemoryInfo
impl RefUnwindSafe for VkCopyImageToMemoryInfo
impl Unpin for VkCopyImageToMemoryInfo
impl UnsafeUnpin for VkCopyImageToMemoryInfo
impl UnwindSafe for VkCopyImageToMemoryInfo
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