Enum hassle_rs::utils::HassleError
source · pub enum HassleError {
Win32Error(HRESULT),
CompileError(String),
ValidationError(String),
LoadLibraryError {
filename: PathBuf,
inner: Error,
},
LibLoadingError(Error),
WindowsOnly(String),
}
Variants§
Win32Error(HRESULT)
CompileError(String)
ValidationError(String)
LoadLibraryError
LibLoadingError(Error)
WindowsOnly(String)
Trait Implementations§
source§impl Debug for HassleError
impl Debug for HassleError
source§impl Display for HassleError
impl Display for HassleError
source§impl Error for HassleError
impl Error for HassleError
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()