Type Alias nannou_wgpu::CommandEncoderDescriptor
source · pub type CommandEncoderDescriptor<'a> = CommandEncoderDescriptor<Option<&'a str>>;
Expand description
Describes a CommandEncoder
.
For use with Device::create_command_encoder
.
Corresponds to WebGPU GPUCommandEncoderDescriptor
.
Aliased Type§
struct CommandEncoderDescriptor<'a> {
pub label: Option<&'a str>,
}
Fields§
§label: Option<&'a str>
Debug label for the command encoder. This will show up in graphics debuggers for easy identification.
Implementations
source§impl<L> CommandEncoderDescriptor<L>
impl<L> CommandEncoderDescriptor<L>
sourcepub fn map_label<K>(
&self,
fun: impl FnOnce(&L) -> K
) -> CommandEncoderDescriptor<K>
pub fn map_label<K>( &self, fun: impl FnOnce(&L) -> K ) -> CommandEncoderDescriptor<K>
Takes a closure and maps the label of the command encoder descriptor into another.
Trait Implementations
source§impl<L> Debug for CommandEncoderDescriptor<L>where
L: Debug,
impl<L> Debug for CommandEncoderDescriptor<L>where
L: Debug,
source§impl<T> Default for CommandEncoderDescriptor<Option<T>>
impl<T> Default for CommandEncoderDescriptor<Option<T>>
source§impl<L> PartialEq for CommandEncoderDescriptor<L>where
L: PartialEq,
impl<L> PartialEq for CommandEncoderDescriptor<L>where
L: PartialEq,
source§fn eq(&self, other: &CommandEncoderDescriptor<L>) -> bool
fn eq(&self, other: &CommandEncoderDescriptor<L>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<L> Eq for CommandEncoderDescriptor<L>where
L: Eq,
impl<L> StructuralPartialEq for CommandEncoderDescriptor<L>
source§impl<L> Clone for CommandEncoderDescriptor<L>where
L: Clone,
impl<L> Clone for CommandEncoderDescriptor<L>where
L: Clone,
source§fn clone(&self) -> CommandEncoderDescriptor<L>
fn clone(&self) -> CommandEncoderDescriptor<L>
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