#[repr(C)]pub struct VkMemoryToImageCopy {
pub sType: VkStructureType,
pub pNext: *const c_void,
pub pHostPointer: *const c_void,
pub memoryRowLength: u32,
pub memoryImageHeight: u32,
pub imageSubresource: VkImageSubresourceLayers,
pub imageOffset: VkOffset3D,
pub imageExtent: VkExtent3D,
}Expand description
struct VkMemoryToImageCopy from VK_VERSION_1_4
Fields§
§sType: VkStructureType§pNext: *const c_void§pHostPointer: *const c_void§memoryRowLength: u32§memoryImageHeight: u32§imageSubresource: VkImageSubresourceLayers§imageOffset: VkOffset3D§imageExtent: VkExtent3DTrait Implementations§
Source§impl Clone for VkMemoryToImageCopy
impl Clone for VkMemoryToImageCopy
Source§fn clone(&self) -> VkMemoryToImageCopy
fn clone(&self) -> VkMemoryToImageCopy
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 VkMemoryToImageCopy
Auto Trait Implementations§
impl !Send for VkMemoryToImageCopy
impl !Sync for VkMemoryToImageCopy
impl Freeze for VkMemoryToImageCopy
impl RefUnwindSafe for VkMemoryToImageCopy
impl Unpin for VkMemoryToImageCopy
impl UnsafeUnpin for VkMemoryToImageCopy
impl UnwindSafe for VkMemoryToImageCopy
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