Struct move_binary_format::errors::VMError
source · [−]pub struct VMError { /* private fields */ }
Implementations
sourceimpl VMError
impl VMError
pub fn into_vm_status(self) -> VMStatus
pub fn major_status(&self) -> StatusCode
pub fn sub_status(&self) -> Option<u64>
pub fn message(&self) -> Option<&String>
pub fn exec_state(&self) -> Option<&ExecutionState>
pub fn remove_exec_state(&mut self)
pub fn location(&self) -> &Location
pub fn indices(&self) -> &Vec<(IndexKind, TableIndex)>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
A: Allocator,
A: Allocator,
pub fn offsets(&self) -> &Vec<(FunctionDefinitionIndex, CodeOffset)>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
A: Allocator,
A: Allocator,
pub fn status_type(&self) -> StatusType
pub fn all_data(
self
) -> (StatusCode, Option<u64>, Option<String>, Option<ExecutionState>, Location, Vec<(IndexKind, TableIndex)>, Vec<(FunctionDefinitionIndex, CodeOffset)>)
pub fn to_partial(self) -> PartialVMError
Trait Implementations
sourceimpl Error for VMError
impl Error for VMError
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
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()
sourceimpl From<VMError> for VMStatus
impl From<VMError> for VMStatus
Conversion functions from internal VM statuses into external VM statuses
sourceimpl Ord for VMError
impl Ord for VMError
sourceimpl PartialOrd<VMError> for VMError
impl PartialOrd<VMError> for VMError
sourcefn partial_cmp(&self, other: &VMError) -> Option<Ordering>
fn partial_cmp(&self, other: &VMError) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Eq for VMError
impl StructuralEq for VMError
impl StructuralPartialEq for VMError
Auto Trait Implementations
impl RefUnwindSafe for VMError
impl Send for VMError
impl Sync for VMError
impl Unpin for VMError
impl UnwindSafe for VMError
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
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more