Struct wgpu::ComputePassDescriptor 
source · pub struct ComputePassDescriptor<'a> {
    pub label: Label<'a>,
}Expand description
Describes the attachments of a compute pass.
For use with CommandEncoder::begin_compute_pass.
Corresponds to WebGPU GPUComputePassDescriptor.
Fields§
§label: Label<'a>Debug label of the compute pass. This will show up in graphics debuggers for easy identification.
Trait Implementations§
source§impl<'a> Clone for ComputePassDescriptor<'a>
 
impl<'a> Clone for ComputePassDescriptor<'a>
source§fn clone(&self) -> ComputePassDescriptor<'a>
 
fn clone(&self) -> ComputePassDescriptor<'a>
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<'a> Debug for ComputePassDescriptor<'a>
 
impl<'a> Debug for ComputePassDescriptor<'a>
source§impl<'a> Default for ComputePassDescriptor<'a>
 
impl<'a> Default for ComputePassDescriptor<'a>
source§fn default() -> ComputePassDescriptor<'a>
 
fn default() -> ComputePassDescriptor<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> RefUnwindSafe for ComputePassDescriptor<'a>
impl<'a> Send for ComputePassDescriptor<'a>
impl<'a> Sync for ComputePassDescriptor<'a>
impl<'a> Unpin for ComputePassDescriptor<'a>
impl<'a> UnwindSafe for ComputePassDescriptor<'a>
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