Struct wgpu::ImageCopyBufferBase
source · pub struct ImageCopyBufferBase<B> {
pub buffer: B,
pub layout: ImageDataLayout,
}
Expand description
View of a buffer which can be used to copy to/from a texture.
Corresponds to WebGPU GPUImageCopyBuffer
.
Fields§
§buffer: B
The buffer to be copied to/from.
layout: ImageDataLayout
The layout of the texture data in this buffer.
Trait Implementations§
source§impl<B> Clone for ImageCopyBuffer<B>where
B: Clone,
impl<B> Clone for ImageCopyBuffer<B>where B: Clone,
source§fn clone(&self) -> ImageCopyBuffer<B>
fn clone(&self) -> ImageCopyBuffer<B>
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 more