pub enum ClangBackendError {
CodegenError(CLifterError),
StackError,
}Expand description
This error shows everything that can go wrong during the operations of the ClangBackend.
Variants§
CodegenError(CLifterError)
StackError
Trait Implementations§
Source§impl Debug for ClangBackendError
impl Debug for ClangBackendError
Source§impl Display for ClangBackendError
impl Display for ClangBackendError
Source§impl Error for ClangBackendError
impl Error for ClangBackendError
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<CLifterError> for ClangBackendError
impl From<CLifterError> for ClangBackendError
Source§fn from(source: CLifterError) -> Self
fn from(source: CLifterError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ClangBackendError
impl !RefUnwindSafe for ClangBackendError
impl Send for ClangBackendError
impl Sync for ClangBackendError
impl Unpin for ClangBackendError
impl !UnwindSafe for ClangBackendError
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