pub struct CopyImageInfo {
pub src_image: Arc<Image>,
pub src_image_layout: ImageLayout,
pub dst_image: Arc<Image>,
pub dst_image_layout: ImageLayout,
pub regions: SmallVec<[ImageCopy; 1]>,
pub _ne: NonExhaustive,
}Expand description
Parameters to copy data from an image to another image.
Fields§
§src_image: Arc<Image>The image to copy from.
There is no default value.
src_image_layout: ImageLayoutThe layout used for src_image during the copy operation.
The following layouts are allowed:
The default value is ImageLayout::TransferSrcOptimal.
dst_image: Arc<Image>The image to copy to.
There is no default value.
dst_image_layout: ImageLayoutThe layout used for dst_image during the copy operation.
The following layouts are allowed:
The default value is ImageLayout::TransferDstOptimal.
regions: SmallVec<[ImageCopy; 1]>The regions of both images to copy between.
The default value is a single region, covering the first mip level, and the smallest of the
array layers and extent of the two images. All aspects of each image are selected, or
plane0 if the image is multi-planar.
_ne: NonExhaustiveImplementations§
Trait Implementations§
Source§impl Clone for CopyImageInfo
impl Clone for CopyImageInfo
Source§fn clone(&self) -> CopyImageInfo
fn clone(&self) -> CopyImageInfo
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 moreAuto Trait Implementations§
impl Freeze for CopyImageInfo
impl !RefUnwindSafe for CopyImageInfo
impl Send for CopyImageInfo
impl Sync for CopyImageInfo
impl Unpin for CopyImageInfo
impl UnsafeUnpin for CopyImageInfo
impl !UnwindSafe for CopyImageInfo
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