pub enum FunctionLookupError {
JITNotEnabled,
FunctionNotFound,
}Variants
JITNotEnabled
FunctionNotFound
Trait Implementations
sourceimpl Debug for FunctionLookupError
impl Debug for FunctionLookupError
sourceimpl Display for FunctionLookupError
impl Display for FunctionLookupError
sourceimpl Error for FunctionLookupError
impl Error for FunctionLookupError
1.30.0 · 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
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
sourceimpl PartialEq<FunctionLookupError> for FunctionLookupError
impl PartialEq<FunctionLookupError> for FunctionLookupError
sourcefn eq(&self, other: &FunctionLookupError) -> bool
fn eq(&self, other: &FunctionLookupError) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
impl Eq for FunctionLookupError
impl StructuralEq for FunctionLookupError
impl StructuralPartialEq for FunctionLookupError
Auto Trait Implementations
impl RefUnwindSafe for FunctionLookupError
impl Send for FunctionLookupError
impl Sync for FunctionLookupError
impl Unpin for FunctionLookupError
impl UnwindSafe for FunctionLookupError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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