#[repr(C)]pub struct VkImageCopy {
    pub srcSubresource: VkImageSubresourceLayers,
    pub srcOffset: VkOffset3D,
    pub dstSubresource: VkImageSubresourceLayers,
    pub dstOffset: VkOffset3D,
    pub extent: VkExtent3D,
}Fields§
§srcSubresource: VkImageSubresourceLayers§srcOffset: VkOffset3D§dstSubresource: VkImageSubresourceLayers§dstOffset: VkOffset3D§extent: VkExtent3DTrait Implementations§
Source§impl Clone for VkImageCopy
 
impl Clone for VkImageCopy
Source§fn clone(&self) -> VkImageCopy
 
fn clone(&self) -> VkImageCopy
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 Default for VkImageCopy
 
impl Default for VkImageCopy
Source§fn default() -> VkImageCopy
 
fn default() -> VkImageCopy
Returns the “default value” for a type. Read more
impl Copy for VkImageCopy
Auto Trait Implementations§
impl Freeze for VkImageCopy
impl RefUnwindSafe for VkImageCopy
impl Send for VkImageCopy
impl Sync for VkImageCopy
impl Unpin for VkImageCopy
impl UnwindSafe for VkImageCopy
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