pub struct VkBufferImageCopy {
pub buffer_offset: usize,
pub buffer_row_length: usize,
pub buffer_image_height: usize,
pub image_subresource: VkImageSubresourceLayers,
pub image_offset: VkOffset3D,
pub image_extent: VkExtent3D,
}
Expand description
Wrapper for VkBufferImageCopy.
Fields§
§buffer_offset: usize
§buffer_row_length: usize
§buffer_image_height: usize
§image_subresource: VkImageSubresourceLayers
§image_offset: VkOffset3D
§image_extent: VkExtent3D
Trait Implementations§
Source§impl Clone for VkBufferImageCopy
impl Clone for VkBufferImageCopy
Source§fn clone(&self) -> VkBufferImageCopy
fn clone(&self) -> VkBufferImageCopy
Returns a copy 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 VkBufferImageCopy
impl Debug for VkBufferImageCopy
Source§impl Default for VkBufferImageCopy
impl Default for VkBufferImageCopy
Source§fn default() -> VkBufferImageCopy
fn default() -> VkBufferImageCopy
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for VkBufferImageCopy
impl RefUnwindSafe for VkBufferImageCopy
impl Send for VkBufferImageCopy
impl Sync for VkBufferImageCopy
impl Unpin for VkBufferImageCopy
impl UnwindSafe for VkBufferImageCopy
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