Sha256: 81fff5a99f40cc3892e0e6d7f5bbb4420a0d87d5cf75521370b306eee17ac3ce

Contents?: true

Size: 1.05 KB

Versions: 17

Compression:

Stored size: 1.05 KB

Contents

//! wasi-common uses an [`Error`] type which represents either a preview 1 [`Errno`] enum, on
//! [`anyhow::Error`] for trapping execution.
//!
//! The user can construct an [`Error`] out of an [`Errno`] using the `From`/`Into` traits.
//! They may also use [`Error::trap`] to construct an error that traps execution. The contents
//! can be inspected with [`Error::downcast`] and [`Error::downcast_ref`]. Additional context
//! can be provided with the [`Error::context`] method. This context is only observable with the
//! `Display` and `Debug` impls of the error.

pub use crate::snapshots::preview_1::error::{Error, ErrorExt};
use std::fmt;

/// An error returned from the `proc_exit` host syscall.
///
/// Embedders can test if an error returned from wasm is this error, in which
/// case it may signal a non-fatal trap.
#[derive(Debug)]
pub struct I32Exit(pub i32);

impl fmt::Display for I32Exit {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "Exited with i32 exit status {}", self.0)
    }
}

impl std::error::Error for I32Exit {}

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
wasmtime-30.0.2 ./ext/cargo-vendor/wasi-common-30.0.2/src/error.rs
wasmtime-29.0.0 ./ext/cargo-vendor/wasi-common-29.0.0/src/error.rs
wasmtime-28.0.0 ./ext/cargo-vendor/wasi-common-28.0.0/src/error.rs
wasmtime-27.0.0 ./ext/cargo-vendor/wasi-common-27.0.0/src/error.rs
wasmtime-26.0.0 ./ext/cargo-vendor/wasi-common-26.0.0/src/error.rs
wasmtime-25.0.2 ./ext/cargo-vendor/wasi-common-25.0.2/src/error.rs
wasmtime-25.0.1 ./ext/cargo-vendor/wasi-common-25.0.1/src/error.rs
wasmtime-25.0.0 ./ext/cargo-vendor/wasi-common-25.0.0/src/error.rs
wasmtime-24.0.0 ./ext/cargo-vendor/wasi-common-24.0.0/src/error.rs
wasmtime-23.0.2 ./ext/cargo-vendor/wasi-common-23.0.2/src/error.rs
wasmtime-22.0.0 ./ext/cargo-vendor/wasi-common-22.0.0/src/error.rs
wasmtime-21.0.1 ./ext/cargo-vendor/wasi-common-21.0.1/src/error.rs
wasmtime-20.0.2 ./ext/cargo-vendor/wasi-common-20.0.2/src/error.rs
wasmtime-20.0.0 ./ext/cargo-vendor/wasi-common-20.0.0/src/error.rs
wasmtime-18.0.3 ./ext/cargo-vendor/wasi-common-18.0.3/src/error.rs
wasmtime-17.0.1 ./ext/cargo-vendor/wasi-common-17.0.1/src/error.rs
wasmtime-17.0.0 ./ext/cargo-vendor/wasi-common-17.0.0/src/error.rs