Struct wgpu_types::ImageCopyBuffer
source · #[repr(C)]pub struct ImageCopyBuffer<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> Clone for ImageCopyBuffer<B>
impl<B: Clone> Clone for ImageCopyBuffer<B>
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 moresource§impl<B: Debug> Debug for ImageCopyBuffer<B>
impl<B: Debug> Debug for ImageCopyBuffer<B>
source§impl<'de, B> Deserialize<'de> for ImageCopyBuffer<B>where
B: Deserialize<'de>,
impl<'de, B> Deserialize<'de> for ImageCopyBuffer<B>where B: Deserialize<'de>,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more