#[non_exhaustive]pub enum CreateComputePipelineError {
    Device(DeviceError),
    Implicit(ImplicitLayoutError),
    Stage(StageError),
    Internal(String),
    PipelineConstants(String),
    MissingDownlevelFlags(MissingDownlevelFlags),
    InvalidResource(InvalidResourceError),
}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.
Device(DeviceError)
Implicit(ImplicitLayoutError)
Stage(StageError)
Internal(String)
PipelineConstants(String)
MissingDownlevelFlags(MissingDownlevelFlags)
InvalidResource(InvalidResourceError)
Trait Implementations§
Source§impl Clone for CreateComputePipelineError
 
impl Clone for CreateComputePipelineError
Source§fn clone(&self) -> CreateComputePipelineError
 
fn clone(&self) -> CreateComputePipelineError
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 CreateComputePipelineError
 
impl Debug for CreateComputePipelineError
Source§impl Display for CreateComputePipelineError
 
impl Display for CreateComputePipelineError
Source§impl Error for CreateComputePipelineError
 
impl Error for CreateComputePipelineError
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<CreateComputePipelineError> for CreateIndirectValidationPipelineError
 
impl From<CreateComputePipelineError> for CreateIndirectValidationPipelineError
Source§fn from(source: CreateComputePipelineError) -> Self
 
fn from(source: CreateComputePipelineError) -> Self
Converts to this type from the input type.
Source§impl From<CreateComputePipelineError> for TimestampNormalizerInitError
 
impl From<CreateComputePipelineError> for TimestampNormalizerInitError
Source§fn from(source: CreateComputePipelineError) -> Self
 
fn from(source: CreateComputePipelineError) -> Self
Converts to this type from the input type.
Source§impl From<DeviceError> for CreateComputePipelineError
 
impl From<DeviceError> for CreateComputePipelineError
Source§fn from(source: DeviceError) -> Self
 
fn from(source: DeviceError) -> Self
Converts to this type from the input type.
Source§impl From<ImplicitLayoutError> for CreateComputePipelineError
 
impl From<ImplicitLayoutError> for CreateComputePipelineError
Source§fn from(source: ImplicitLayoutError) -> Self
 
fn from(source: ImplicitLayoutError) -> Self
Converts to this type from the input type.
Source§impl From<InvalidResourceError> for CreateComputePipelineError
 
impl From<InvalidResourceError> for CreateComputePipelineError
Source§fn from(source: InvalidResourceError) -> Self
 
fn from(source: InvalidResourceError) -> Self
Converts to this type from the input type.
Source§impl From<MissingDownlevelFlags> for CreateComputePipelineError
 
impl From<MissingDownlevelFlags> for CreateComputePipelineError
Source§fn from(source: MissingDownlevelFlags) -> Self
 
fn from(source: MissingDownlevelFlags) -> Self
Converts to this type from the input type.
Source§impl From<StageError> for CreateComputePipelineError
 
impl From<StageError> for CreateComputePipelineError
Source§fn from(source: StageError) -> Self
 
fn from(source: StageError) -> Self
Converts to this type from the input type.
Source§impl WebGpuError for CreateComputePipelineError
 
impl WebGpuError for CreateComputePipelineError
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 CreateComputePipelineError
impl RefUnwindSafe for CreateComputePipelineError
impl Send for CreateComputePipelineError
impl Sync for CreateComputePipelineError
impl Unpin for CreateComputePipelineError
impl UnwindSafe for CreateComputePipelineError
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