#[non_exhaustive]pub enum CreateShaderModuleError {
Parsing(ShaderError<ParseError>),
Generation,
Device(DeviceError),
Validation(ShaderError<WithSpan<ValidationError>>),
MissingFeatures(MissingFeatures),
InvalidGroupIndex {
bind: ResourceBinding,
group: u32,
limit: u32,
},
NotCompiledForBackend,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Parsing(ShaderError<ParseError>)
Available on crate feature
wgsl only.Generation
Device(DeviceError)
Validation(ShaderError<WithSpan<ValidationError>>)
MissingFeatures(MissingFeatures)
InvalidGroupIndex
NotCompiledForBackend
Trait Implementations§
Source§impl Clone for CreateShaderModuleError
impl Clone for CreateShaderModuleError
Source§fn clone(&self) -> CreateShaderModuleError
fn clone(&self) -> CreateShaderModuleError
Returns a duplicate 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 Debug for CreateShaderModuleError
impl Debug for CreateShaderModuleError
Source§impl Display for CreateShaderModuleError
impl Display for CreateShaderModuleError
Source§impl Error for CreateShaderModuleError
impl Error for CreateShaderModuleError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<CreateShaderModuleError> for CreateIndirectValidationPipelineError
impl From<CreateShaderModuleError> for CreateIndirectValidationPipelineError
Source§fn from(source: CreateShaderModuleError) -> Self
fn from(source: CreateShaderModuleError) -> Self
Converts to this type from the input type.
Source§impl From<CreateShaderModuleError> for TimestampNormalizerInitError
impl From<CreateShaderModuleError> for TimestampNormalizerInitError
Source§fn from(source: CreateShaderModuleError) -> Self
fn from(source: CreateShaderModuleError) -> Self
Converts to this type from the input type.
Source§impl From<DeviceError> for CreateShaderModuleError
impl From<DeviceError> for CreateShaderModuleError
Source§fn from(source: DeviceError) -> Self
fn from(source: DeviceError) -> Self
Converts to this type from the input type.
Source§impl From<MissingFeatures> for CreateShaderModuleError
impl From<MissingFeatures> for CreateShaderModuleError
Source§fn from(source: MissingFeatures) -> Self
fn from(source: MissingFeatures) -> Self
Converts to this type from the input type.
Source§impl From<ShaderError<ParseError>> for CreateShaderModuleError
impl From<ShaderError<ParseError>> for CreateShaderModuleError
Source§impl From<ShaderError<WithSpan<ValidationError>>> for CreateShaderModuleError
impl From<ShaderError<WithSpan<ValidationError>>> for CreateShaderModuleError
Source§impl WebGpuError for CreateShaderModuleError
impl WebGpuError for CreateShaderModuleError
Source§fn webgpu_error_type(&self) -> ErrorType
fn webgpu_error_type(&self) -> ErrorType
Determine the classification of this error as a WebGPU [
ErrorType].Auto Trait Implementations§
impl Freeze for CreateShaderModuleError
impl RefUnwindSafe for CreateShaderModuleError
impl Send for CreateShaderModuleError
impl Sync for CreateShaderModuleError
impl Unpin for CreateShaderModuleError
impl UnwindSafe for CreateShaderModuleError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more