#[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,
}
Fields§
§sType: VkStructureType
§pNext: *const c_void
§flags: VkHostImageCopyFlags
§srcImage: VkImage
§srcImageLayout: VkImageLayout
§regionCount: u32
§pRegions: *const VkImageToMemoryCopy
Trait 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 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for VkCopyImageToMemoryInfo
impl Default for VkCopyImageToMemoryInfo
impl Copy for VkCopyImageToMemoryInfo
Auto Trait Implementations§
impl Freeze for VkCopyImageToMemoryInfo
impl RefUnwindSafe for VkCopyImageToMemoryInfo
impl !Send for VkCopyImageToMemoryInfo
impl !Sync for VkCopyImageToMemoryInfo
impl Unpin 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