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: SubresourceLayersThe image subresource to copy from.
src_offset: OffsetThe source offset.
dst_subresource: SubresourceLayersThe image subresource to copy to.
dst_offset: OffsetThe destination offset.
extent: ExtentThe 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