wasmer_wasix::runners::wasi

Struct WasiRunner

Source
pub struct WasiRunner { /* private fields */ }

Implementations§

Source§

impl WasiRunner

Source

pub fn new() -> Self

Constructs a new WasiRunner.

Source

pub fn entry_function(&self) -> Option<String>

Returns the current entry function for this WasiRunner

Source

pub fn with_entry_function<S>(&mut self, entry_function: S) -> &mut Self
where S: Into<String>,

Builder method to set the name of the entry function for this WasiRunner

Source

pub fn get_args(&self) -> Vec<String>

Returns the current arguments for this WasiRunner

Source

pub fn with_args<A, S>(&mut self, args: A) -> &mut Self
where A: IntoIterator<Item = S>, S: Into<String>,

Builder method to provide CLI args to the runner

Source

pub fn with_env(self, key: impl Into<String>, value: impl Into<String>) -> Self

Builder method to provide environment variables to the runner.

Source

pub fn with_envs<I, K, V>(&mut self, envs: I) -> &mut Self
where I: IntoIterator<Item = (K, V)>, K: Into<String>, V: Into<String>,

Source

pub fn with_forward_host_env(&mut self, forward: bool) -> &mut Self

Source

pub fn with_mapped_directories<I, D>(&mut self, dirs: I) -> &mut Self
where I: IntoIterator<Item = D>, D: Into<MappedDirectory>,

Source

pub fn with_home_mapped(&mut self, is_home_mapped: bool) -> &mut Self

Source

pub fn with_tmp_mapped(&mut self, is_tmp_mapped: bool) -> &mut Self

Source

pub fn with_mounted_directories<I, D>(&mut self, dirs: I) -> &mut Self
where I: IntoIterator<Item = D>, D: Into<MountedDirectory>,

Source

pub fn with_mount( &mut self, dest: String, fs: Arc<dyn FileSystem + Send + Sync>, ) -> &mut Self

Mount a FileSystem instance at a particular location.

Source

pub fn with_current_dir(&mut self, dir: impl Into<PathBuf>) -> &mut Self

Override the directory the WASIX instance will start in.

Source

pub fn with_injected_package(&mut self, pkg: BinaryPackage) -> &mut Self

Add a package that should be available to the instance at runtime.

Source

pub fn with_injected_packages( &mut self, packages: impl IntoIterator<Item = BinaryPackage>, ) -> &mut Self

Add packages that should be available to the instance at runtime.

Source

pub fn with_mapped_host_command( &mut self, alias: impl Into<String>, target: impl Into<String>, ) -> &mut Self

Source

pub fn with_mapped_host_commands( &mut self, commands: impl IntoIterator<Item = MappedCommand>, ) -> &mut Self

Source

pub fn capabilities_mut(&mut self) -> &mut Capabilities

Source

pub fn with_capabilities(&mut self, capabilities: Capabilities) -> &mut Self

Source

pub fn with_snapshot_trigger(&mut self, on: SnapshotTrigger) -> &mut Self

Source

pub fn with_default_snapshot_triggers(&mut self) -> &mut Self

Source

pub fn has_snapshot_trigger(&self, on: SnapshotTrigger) -> bool

Source

pub fn with_snapshot_interval(&mut self, period: Duration) -> &mut Self

Source

pub fn with_journal(&mut self, journal: Arc<DynJournal>) -> &mut Self

Source

pub fn with_stdin( &mut self, stdin: Box<dyn VirtualFile + Send + Sync>, ) -> &mut Self

Source

pub fn with_stdout( &mut self, stdout: Box<dyn VirtualFile + Send + Sync>, ) -> &mut Self

Source

pub fn with_stderr( &mut self, stderr: Box<dyn VirtualFile + Send + Sync>, ) -> &mut Self

Source

pub fn with_import( &mut self, namespace: impl Into<String>, name: impl Into<String>, value: impl Into<Extern>, ) -> &mut Self

Add an item to the list of importable items provided to the instance.

Source

pub fn with_imports<I, S1, S2, E>(&mut self, imports: I) -> &mut Self
where I: IntoIterator<Item = ((S1, S2), E)>, S1: Into<String>, S2: Into<String>, E: Into<Extern>,

Add multiple import functions.

This method will accept a &Imports object.

Source

pub fn prepare_webc_env( &self, program_name: &str, wasi: &Wasi, pkg: Option<&BinaryPackage>, runtime: Arc<dyn Runtime + Send + Sync>, root_fs: Option<TmpFileSystem>, ) -> Result<WasiEnvBuilder, Error>

Source

pub fn run_wasm( &self, runtime: Arc<dyn Runtime + Send + Sync>, program_name: &str, module: &Module, module_hash: ModuleHash, asyncify: bool, ) -> Result<(), Error>

Trait Implementations§

Source§

impl Clone for WasiRunner

Source§

fn clone(&self) -> WasiRunner

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for WasiRunner

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for WasiRunner

Source§

fn default() -> WasiRunner

Returns the “default value” for a type. Read more
Source§

impl Runner for WasiRunner

Source§

fn can_run_command(command: &Command) -> Result<bool, Error>

Returns whether the Runner will be able to run the Command
Source§

fn run_command( &mut self, command_name: &str, pkg: &BinaryPackage, runtime: Arc<dyn Runtime + Send + Sync>, ) -> Result<(), Error>

Run a command.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> ArchivePointee for T

Source§

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.
Source§

fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata

Converts some archived metadata to the pointer metadata for itself.
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> LayoutRaw for T

Source§

fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>

Returns the layout of the type.
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize = _

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Pointee for T

Source§

type Metadata = ()

The metadata type for pointers and references to this type.
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> Upcastable for T
where T: Any + Debug + 'static,

Source§

fn upcast_any_ref(&self) -> &(dyn Any + 'static)

Source§

fn upcast_any_mut(&mut self) -> &mut (dyn Any + 'static)

Source§

fn upcast_any_box(self: Box<T>) -> Box<dyn Any>

Source§

impl<T> Upcastable for T
where T: Any + Send + Sync + 'static,

Source§

fn upcast_any_ref(&self) -> &(dyn Any + 'static)

upcast ref
Source§

fn upcast_any_mut(&mut self) -> &mut (dyn Any + 'static)

upcast mut ref
Source§

fn upcast_any_box(self: Box<T>) -> Box<dyn Any>

upcast boxed dyn
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<A, B, T> HttpServerConnExec<A, B> for T
where B: Body,

Source§

impl<T> MaybeSendSync for T