pub struct ShaderModuleDescriptorSpirV<'a> {
    pub label: Label<'a>,
    pub source: Cow<'a, [u32]>,
}
Expand description

Descriptor for a shader module given by SPIR-V binary, for use with Device::create_shader_module_spirv.

This type is unique to the Rust API of wgpu. In the WebGPU specification, only WGSL source code strings are accepted.

Fields§

§label: Label<'a>

Debug label of the shader module. This will show up in graphics debuggers for easy identification.

§source: Cow<'a, [u32]>

Binary SPIR-V data, in 4-byte words.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.