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
sourceimpl Debug for HassleError
impl Debug for HassleError
sourceimpl Display for HassleError
impl Display for HassleError
sourceimpl Error for HassleError
impl Error for HassleError
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
🔬 This is a nightly-only experimental API. (
backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations
impl !RefUnwindSafe for HassleError
impl Send for HassleError
impl Sync for HassleError
impl Unpin for HassleError
impl !UnwindSafe for HassleError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more