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
sourceimpl<B: Clone> Clone for ImageCopyBuffer<B>
impl<B: Clone> Clone for ImageCopyBuffer<B>
sourcefn clone(&self) -> ImageCopyBuffer<B>
fn clone(&self) -> ImageCopyBuffer<B>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl<B> RefUnwindSafe for ImageCopyBuffer<B> where
B: RefUnwindSafe,
impl<B> Send for ImageCopyBuffer<B> where
B: Send,
impl<B> Sync for ImageCopyBuffer<B> where
B: Sync,
impl<B> Unpin for ImageCopyBuffer<B> where
B: Unpin,
impl<B> UnwindSafe for ImageCopyBuffer<B> where
B: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more