pub struct ImageCopy {
pub src_subresource: SubresourceLayers,
pub src_offset: Offset,
pub dst_subresource: SubresourceLayers,
pub dst_offset: Offset,
pub extent: Extent,
}
Expand description
Bundles together all the parameters needed to copy data from one Image
to another.
Fields§
§src_subresource: SubresourceLayers
The image subresource to copy from.
src_offset: Offset
The source offset.
dst_subresource: SubresourceLayers
The image subresource to copy to.
dst_offset: Offset
The destination offset.
extent: Extent
The extent of the region to copy.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ImageCopy
impl RefUnwindSafe for ImageCopy
impl Send for ImageCopy
impl Sync for ImageCopy
impl Unpin for ImageCopy
impl UnwindSafe for ImageCopy
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