[−][src]Enum wasmer_runtime::error::CallError
This error type is produced by calling a wasm function exported from a module.
If the module traps in some way while running, this will
be the CallError::Runtime(RuntimeError) variant.
Comparing two CallErrors always evaluates to false.
Variants
Resolve(ResolveError)An error occured resolving the functions name or types.
Runtime(RuntimeError)A runtime error occurred during the function call.
Trait Implementations
impl Error for CallError[src]
fn description(&self) -> &str1.0.0[src]
fn cause(&self) -> Option<&dyn Error>1.0.0[src]
fn source(&self) -> Option<&(dyn Error + 'static)>1.30.0[src]
fn backtrace(&self) -> Option<&Backtrace>[src]
impl From<CallError> for Error[src]
impl From<RuntimeError> for CallError[src]
fn from(runtime_err: RuntimeError) -> CallError[src]
impl From<ResolveError> for CallError[src]
fn from(resolve_err: ResolveError) -> CallError[src]
impl PartialEq<CallError> for CallError[src]
fn eq(&self, _other: &CallError) -> bool[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
impl Display for CallError[src]
impl Debug for CallError[src]
Auto Trait Implementations
impl !Send for CallError
impl !Sync for CallError
impl Unpin for CallError
impl !UnwindSafe for CallError
impl !RefUnwindSafe for CallError
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,