Struct wgpu::ImageCopyBufferBase
#[repr(C)]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§
§impl<B> Clone for ImageCopyBuffer<B>where
B: Clone,
impl<B> Clone for ImageCopyBuffer<B>where
B: Clone,
§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§impl<B> Debug for ImageCopyBuffer<B>where
B: Debug,
impl<B> Debug for ImageCopyBuffer<B>where
B: Debug,
§impl<'de, B> Deserialize<'de> for ImageCopyBuffer<B>where
B: Deserialize<'de>,
impl<'de, B> Deserialize<'de> for ImageCopyBuffer<B>where
B: Deserialize<'de>,
§fn deserialize<__D>(
__deserializer: __D
) -> Result<ImageCopyBuffer<B>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<ImageCopyBuffer<B>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl<B> Serialize for ImageCopyBuffer<B>where
B: Serialize,
impl<B> Serialize for ImageCopyBuffer<B>where
B: Serialize,
§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl<B> Copy for ImageCopyBuffer<B>where
B: Copy,
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§
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