(mut self, shader_panic_strategy: ShaderPanicStrategy)
| 365 | /// Change the shader `panic!` handling strategy (see [`ShaderPanicStrategy`]). |
| 366 | #[must_use] |
| 367 | pub fn shader_panic_strategy(mut self, shader_panic_strategy: ShaderPanicStrategy) -> Self { |
| 368 | self.shader_panic_strategy = shader_panic_strategy; |
| 369 | self |
| 370 | } |
| 371 | |
| 372 | /// Allow store from one struct type to a different type with compatible layout and members. |
| 373 | #[must_use] |
no outgoing calls
no test coverage detected