logo
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.

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.