Struct wasmer_engine::RuntimeError [−][src]
pub struct RuntimeError { /* fields omitted */ }
Expand description
A struct representing an aborted instruction execution, with a message indicating the cause.
Implementations
impl RuntimeError
[src]
impl RuntimeError
[src]pub fn new<I: Into<String>>(message: I) -> Self
[src]
pub fn new<I: Into<String>>(message: I) -> Self
[src]Creates a new generic RuntimeError
with the given message
.
Example
let trap = wasmer_engine::RuntimeError::new("unexpected error"); assert_eq!("unexpected error", trap.message());
pub fn trace(&self) -> &[FrameInfo]
[src]
pub fn trace(&self) -> &[FrameInfo]
[src]Returns a list of function frames in WebAssembly code that led to this trap happening.
Trait Implementations
impl Clone for RuntimeError
[src]
impl Clone for RuntimeError
[src]fn clone(&self) -> RuntimeError
[src]
fn clone(&self) -> RuntimeError
[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]Performs copy-assignment from source
. Read more
impl Debug for RuntimeError
[src]
impl Debug for RuntimeError
[src]impl Display for RuntimeError
[src]
impl Display for RuntimeError
[src]impl Error for RuntimeError
[src]
impl Error for RuntimeError
[src]fn source(&self) -> Option<&(dyn Error + 'static)>
[src]
fn source(&self) -> Option<&(dyn Error + 'static)>
[src]The lower-level source of this error, if any. Read more
fn backtrace(&self) -> Option<&Backtrace>
[src]
fn backtrace(&self) -> Option<&Backtrace>
[src]backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
fn description(&self) -> &str
1.0.0[src]
fn description(&self) -> &str
1.0.0[src]use the Display impl or to_string()
Auto Trait Implementations
impl !RefUnwindSafe for RuntimeError
impl Send for RuntimeError
impl Sync for RuntimeError
impl Unpin for RuntimeError
impl !UnwindSafe for RuntimeError
Blanket Implementations
impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
pub fn pointer_metadata(
&<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
pub fn pointer_metadata(
&<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more