#[non_exhaustive]pub enum CreateComputePipelineError {
Device(DeviceError),
InvalidLayout,
Implicit(ImplicitLayoutError),
Stage(StageError),
Internal(String),
MissingDownlevelFlags(MissingDownlevelFlags),
}
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)
InvalidLayout
Implicit(ImplicitLayoutError)
Stage(StageError)
Internal(String)
MissingDownlevelFlags(MissingDownlevelFlags)
Trait Implementations§
source§impl Clone for CreateComputePipelineError
impl Clone for CreateComputePipelineError
source§fn clone(&self) -> CreateComputePipelineError
fn clone(&self) -> CreateComputePipelineError
Returns a copy 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)>
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<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<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.
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