pub struct BufferImageCopy {
pub buffer_offset: u64,
pub buffer_row_length: u32,
pub buffer_image_height: u32,
pub image_subresource: ImageSubresourceLayers,
pub image_offset: Offset3D,
pub image_extent: Extent3D,
}
Expand description
Fields§
§buffer_offset: u64
§buffer_row_length: u32
§buffer_image_height: u32
§image_subresource: ImageSubresourceLayers
§image_offset: Offset3D
§image_extent: Extent3D
Trait Implementations§
Source§impl Clone for BufferImageCopy
impl Clone for BufferImageCopy
Source§fn clone(&self) -> BufferImageCopy
fn clone(&self) -> BufferImageCopy
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 Debug for BufferImageCopy
impl Debug for BufferImageCopy
Source§impl<'a> From<&'a BufferImageCopy> for VkBufferImageCopy
impl<'a> From<&'a BufferImageCopy> for VkBufferImageCopy
Source§fn from(copy: &'a BufferImageCopy) -> Self
fn from(copy: &'a BufferImageCopy) -> Self
Converts to this type from the input type.
Source§impl Hash for BufferImageCopy
impl Hash for BufferImageCopy
Source§impl PartialEq for BufferImageCopy
impl PartialEq for BufferImageCopy
impl Copy for BufferImageCopy
impl Eq for BufferImageCopy
impl StructuralPartialEq for BufferImageCopy
Auto Trait Implementations§
impl Freeze for BufferImageCopy
impl RefUnwindSafe for BufferImageCopy
impl Send for BufferImageCopy
impl Sync for BufferImageCopy
impl Unpin for BufferImageCopy
impl UnwindSafe for BufferImageCopy
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