#[non_exhaustive]pub enum SpirvBuilderError {
Show 13 variants
MissingTarget,
NonSpirvTarget {
target: String,
},
UnsupportedSpirvTargetEnv {
target_env: String,
},
MissingCratePath,
CratePathDoesntExist(PathBuf),
MissingRustcCodegenSpirvDylib,
RustcCodegenSpirvDylibDoesNotExist(PathBuf),
MissingTargetSpec,
BuildFailed,
MultiModuleWithPrintMetadata,
WatchWithPrintMetadata,
MetadataFileMissing(Error),
MetadataFileMalformed(Error),
}
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.
MissingTarget
NonSpirvTarget
UnsupportedSpirvTargetEnv
MissingCratePath
CratePathDoesntExist(PathBuf)
MissingRustcCodegenSpirvDylib
RustcCodegenSpirvDylibDoesNotExist(PathBuf)
MissingTargetSpec
BuildFailed
MultiModuleWithPrintMetadata
WatchWithPrintMetadata
MetadataFileMissing(Error)
MetadataFileMalformed(Error)
Trait Implementations§
Source§impl Debug for SpirvBuilderError
impl Debug for SpirvBuilderError
Source§impl Display for SpirvBuilderError
impl Display for SpirvBuilderError
Source§impl Error for SpirvBuilderError
impl Error for SpirvBuilderError
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<Error> for SpirvBuilderError
impl From<Error> for SpirvBuilderError
Auto Trait Implementations§
impl Freeze for SpirvBuilderError
impl !RefUnwindSafe for SpirvBuilderError
impl Send for SpirvBuilderError
impl Sync for SpirvBuilderError
impl Unpin for SpirvBuilderError
impl !UnwindSafe for SpirvBuilderError
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