Enum wasmedge_sdk::error::CoreCommonError
source · pub enum CoreCommonError {
RuntimeError,
CostLimitExceeded,
WrongVMWorkflow,
FuncNotFound,
AOTDisabled,
Interrupted,
UserDefError,
NotValidated,
}
Expand description
The error type for the common errors from WasmEdge Core.
Variants§
RuntimeError
CostLimitExceeded
WrongVMWorkflow
FuncNotFound
AOTDisabled
Interrupted
UserDefError
NotValidated
Trait Implementations§
source§impl Clone for CoreCommonError
impl Clone for CoreCommonError
source§fn clone(&self) -> CoreCommonError
fn clone(&self) -> CoreCommonError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CoreCommonError
impl Debug for CoreCommonError
source§impl Display for CoreCommonError
impl Display for CoreCommonError
source§impl Error for CoreCommonError
impl Error for CoreCommonError
1.30.0 · 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()
source§impl PartialEq for CoreCommonError
impl PartialEq for CoreCommonError
source§fn eq(&self, other: &CoreCommonError) -> bool
fn eq(&self, other: &CoreCommonError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for CoreCommonError
impl StructuralEq for CoreCommonError
impl StructuralPartialEq for CoreCommonError
Auto Trait Implementations§
impl RefUnwindSafe for CoreCommonError
impl Send for CoreCommonError
impl Sync for CoreCommonError
impl Unpin for CoreCommonError
impl UnwindSafe for CoreCommonError
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