wasi_common

Struct WasiCtx

Source
pub struct WasiCtx(/* private fields */);
Expand description

An Arc-wrapper around the wasi-common context to allow mutable access to the file descriptor table. This wrapper is only necessary due to the signature of fd_fdstat_set_flags; if that changes, there are a variety of improvements that can be made (TODO: https://github.com/bytecodealliance/wasmtime/issues/5643).

Implementations§

Source§

impl WasiCtx

Source

pub fn new( random: Box<dyn RngCore + Send + Sync>, clocks: WasiClocks, sched: Box<dyn WasiSched>, table: Table, ) -> Self

Source

pub fn insert_file( &self, fd: u32, file: Box<dyn WasiFile>, access_mode: FileAccessMode, )

Source

pub fn push_file( &self, file: Box<dyn WasiFile>, access_mode: FileAccessMode, ) -> Result<u32, Error>

Source

pub fn insert_dir(&self, fd: u32, dir: Box<dyn WasiDir>, path: PathBuf)

Source

pub fn push_dir( &self, dir: Box<dyn WasiDir>, path: PathBuf, ) -> Result<u32, Error>

Source

pub fn table(&self) -> &Table

Source

pub fn table_mut(&mut self) -> Option<&mut Table>

Source

pub fn push_arg(&mut self, arg: &str) -> Result<(), StringArrayError>

Source

pub fn push_env( &mut self, var: &str, value: &str, ) -> Result<(), StringArrayError>

Source

pub fn set_stdin(&self, f: Box<dyn WasiFile>)

Source

pub fn set_stdout(&self, f: Box<dyn WasiFile>)

Source

pub fn set_stderr(&self, f: Box<dyn WasiFile>)

Source

pub fn push_preopened_dir( &self, dir: Box<dyn WasiDir>, path: impl AsRef<Path>, ) -> Result<(), Error>

Trait Implementations§

Source§

impl Clone for WasiCtx

Source§

fn clone(&self) -> WasiCtx

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 Deref for WasiCtx

Source§

type Target = WasiCtxInner

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.
Source§

impl WasiSnapshotPreview1 for WasiCtx

Source§

fn args_get<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, argv: GuestPtr<GuestPtr<u8>>, argv_buf: GuestPtr<u8>, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn args_sizes_get<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, _memory: &'life1 mut GuestMemory<'life2>, ) -> Pin<Box<dyn Future<Output = Result<(Size, Size), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn environ_get<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, environ: GuestPtr<GuestPtr<u8>>, environ_buf: GuestPtr<u8>, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn environ_sizes_get<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, _memory: &'life1 mut GuestMemory<'life2>, ) -> Pin<Box<dyn Future<Output = Result<(Size, Size), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn clock_res_get<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, _memory: &'life1 mut GuestMemory<'life2>, id: Clockid, ) -> Pin<Box<dyn Future<Output = Result<Timestamp, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn clock_time_get<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, _memory: &'life1 mut GuestMemory<'life2>, id: Clockid, precision: Timestamp, ) -> Pin<Box<dyn Future<Output = Result<Timestamp, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_advise<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, _memory: &'life1 mut GuestMemory<'life2>, fd: Fd, offset: Filesize, len: Filesize, advice: Advice, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_allocate<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, _memory: &'life1 mut GuestMemory<'life2>, fd: Fd, _offset: Filesize, _len: Filesize, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_close<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, _memory: &'life1 mut GuestMemory<'life2>, fd: Fd, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_datasync<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, _memory: &'life1 mut GuestMemory<'life2>, fd: Fd, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_fdstat_get<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, _memory: &'life1 mut GuestMemory<'life2>, fd: Fd, ) -> Pin<Box<dyn Future<Output = Result<Fdstat, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_fdstat_set_flags<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, _memory: &'life1 mut GuestMemory<'life2>, fd: Fd, flags: Fdflags, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_fdstat_set_rights<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, _memory: &'life1 mut GuestMemory<'life2>, fd: Fd, _fs_rights_base: Rights, _fs_rights_inheriting: Rights, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_filestat_get<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, _memory: &'life1 mut GuestMemory<'life2>, fd: Fd, ) -> Pin<Box<dyn Future<Output = Result<Filestat, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_filestat_set_size<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, _memory: &'life1 mut GuestMemory<'life2>, fd: Fd, size: Filesize, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_filestat_set_times<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, _memory: &'life1 mut GuestMemory<'life2>, fd: Fd, atim: Timestamp, mtim: Timestamp, fst_flags: Fstflags, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_read<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, fd: Fd, iovs: IovecArray, ) -> Pin<Box<dyn Future<Output = Result<Size, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_pread<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, fd: Fd, iovs: IovecArray, offset: Filesize, ) -> Pin<Box<dyn Future<Output = Result<Size, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_write<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, fd: Fd, ciovs: CiovecArray, ) -> Pin<Box<dyn Future<Output = Result<Size, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_pwrite<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, fd: Fd, ciovs: CiovecArray, offset: Filesize, ) -> Pin<Box<dyn Future<Output = Result<Size, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_prestat_get<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, _memory: &'life1 mut GuestMemory<'life2>, fd: Fd, ) -> Pin<Box<dyn Future<Output = Result<Prestat, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_prestat_dir_name<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, fd: Fd, path: GuestPtr<u8>, path_max_len: Size, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_renumber<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, _memory: &'life1 mut GuestMemory<'life2>, from: Fd, to: Fd, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_seek<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, _memory: &'life1 mut GuestMemory<'life2>, fd: Fd, offset: Filedelta, whence: Whence, ) -> Pin<Box<dyn Future<Output = Result<Filesize, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_sync<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, _memory: &'life1 mut GuestMemory<'life2>, fd: Fd, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_tell<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, _memory: &'life1 mut GuestMemory<'life2>, fd: Fd, ) -> Pin<Box<dyn Future<Output = Result<Filesize, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_readdir<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, fd: Fd, buf: GuestPtr<u8>, buf_len: Size, cookie: Dircookie, ) -> Pin<Box<dyn Future<Output = Result<Size, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn path_create_directory<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, dirfd: Fd, path: GuestPtr<str>, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn path_filestat_get<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, dirfd: Fd, flags: Lookupflags, path: GuestPtr<str>, ) -> Pin<Box<dyn Future<Output = Result<Filestat, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn path_filestat_set_times<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, dirfd: Fd, flags: Lookupflags, path: GuestPtr<str>, atim: Timestamp, mtim: Timestamp, fst_flags: Fstflags, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn path_open<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, dirfd: Fd, dirflags: Lookupflags, path: GuestPtr<str>, oflags: Oflags, fs_rights_base: Rights, _fs_rights_inheriting: Rights, fdflags: Fdflags, ) -> Pin<Box<dyn Future<Output = Result<Fd, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn path_remove_directory<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, dirfd: Fd, path: GuestPtr<str>, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn path_rename<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, src_fd: Fd, src_path: GuestPtr<str>, dest_fd: Fd, dest_path: GuestPtr<str>, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn poll_oneoff<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, subs: GuestPtr<Subscription>, events: GuestPtr<Event>, nsubscriptions: Size, ) -> Pin<Box<dyn Future<Output = Result<Size, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn proc_exit<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, _memory: &'life1 mut GuestMemory<'life2>, status: Exitcode, ) -> Pin<Box<dyn Future<Output = Error> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn proc_raise<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, _memory: &'life1 mut GuestMemory<'life2>, _sig: Signal, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn sched_yield<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, _memory: &'life1 mut GuestMemory<'life2>, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn random_get<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, buf: GuestPtr<u8>, buf_len: Size, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn sock_accept<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, _memory: &'life1 mut GuestMemory<'life2>, fd: Fd, flags: Fdflags, ) -> Pin<Box<dyn Future<Output = Result<Fd, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn sock_recv<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, fd: Fd, ri_data: IovecArray, ri_flags: Riflags, ) -> Pin<Box<dyn Future<Output = Result<(Size, Roflags), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn sock_send<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, fd: Fd, si_data: CiovecArray, _si_flags: Siflags, ) -> Pin<Box<dyn Future<Output = Result<Size, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn sock_shutdown<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, _memory: &'life1 mut GuestMemory<'life2>, fd: Fd, how: Sdflags, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

impl WasiUnstable for WasiCtx

Source§

fn args_get<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, argv: GuestPtr<GuestPtr<u8>>, argv_buf: GuestPtr<u8>, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn args_sizes_get<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, ) -> Pin<Box<dyn Future<Output = Result<(Size, Size), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn environ_get<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, environ: GuestPtr<GuestPtr<u8>>, environ_buf: GuestPtr<u8>, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn environ_sizes_get<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, ) -> Pin<Box<dyn Future<Output = Result<(Size, Size), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn clock_res_get<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, id: Clockid, ) -> Pin<Box<dyn Future<Output = Result<Timestamp, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn clock_time_get<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, id: Clockid, precision: Timestamp, ) -> Pin<Box<dyn Future<Output = Result<Timestamp, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_advise<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, fd: Fd, offset: Filesize, len: Filesize, advice: Advice, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_allocate<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, fd: Fd, offset: Filesize, len: Filesize, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_close<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, fd: Fd, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_datasync<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, fd: Fd, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_fdstat_get<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, fd: Fd, ) -> Pin<Box<dyn Future<Output = Result<Fdstat, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_fdstat_set_flags<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, fd: Fd, flags: Fdflags, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_fdstat_set_rights<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, fd: Fd, fs_rights_base: Rights, fs_rights_inheriting: Rights, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_filestat_get<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, fd: Fd, ) -> Pin<Box<dyn Future<Output = Result<Filestat, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_filestat_set_size<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, fd: Fd, size: Filesize, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_filestat_set_times<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, fd: Fd, atim: Timestamp, mtim: Timestamp, fst_flags: Fstflags, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_read<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, fd: Fd, iovs: IovecArray, ) -> Pin<Box<dyn Future<Output = Result<Size, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_pread<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, fd: Fd, iovs: IovecArray, offset: Filesize, ) -> Pin<Box<dyn Future<Output = Result<Size, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_write<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, fd: Fd, ciovs: CiovecArray, ) -> Pin<Box<dyn Future<Output = Result<Size, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_pwrite<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, fd: Fd, ciovs: CiovecArray, offset: Filesize, ) -> Pin<Box<dyn Future<Output = Result<Size, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_prestat_get<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, fd: Fd, ) -> Pin<Box<dyn Future<Output = Result<Prestat, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_prestat_dir_name<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, fd: Fd, path: GuestPtr<u8>, path_max_len: Size, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_renumber<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, from: Fd, to: Fd, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_seek<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, fd: Fd, offset: Filedelta, whence: Whence, ) -> Pin<Box<dyn Future<Output = Result<Filesize, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_sync<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, fd: Fd, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_tell<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, fd: Fd, ) -> Pin<Box<dyn Future<Output = Result<Filesize, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn fd_readdir<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, fd: Fd, buf: GuestPtr<u8>, buf_len: Size, cookie: Dircookie, ) -> Pin<Box<dyn Future<Output = Result<Size, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn path_create_directory<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, dirfd: Fd, path: GuestPtr<str>, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn path_filestat_get<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, dirfd: Fd, flags: Lookupflags, path: GuestPtr<str>, ) -> Pin<Box<dyn Future<Output = Result<Filestat, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn path_filestat_set_times<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, dirfd: Fd, flags: Lookupflags, path: GuestPtr<str>, atim: Timestamp, mtim: Timestamp, fst_flags: Fstflags, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn path_open<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, dirfd: Fd, dirflags: Lookupflags, path: GuestPtr<str>, oflags: Oflags, fs_rights_base: Rights, fs_rights_inheriting: Rights, fdflags: Fdflags, ) -> Pin<Box<dyn Future<Output = Result<Fd, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn path_remove_directory<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, dirfd: Fd, path: GuestPtr<str>, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn path_rename<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, src_fd: Fd, src_path: GuestPtr<str>, dest_fd: Fd, dest_path: GuestPtr<str>, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn poll_oneoff<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, subs: GuestPtr<Subscription>, events: GuestPtr<Event>, nsubscriptions: Size, ) -> Pin<Box<dyn Future<Output = Result<Size, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn proc_exit<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, status: Exitcode, ) -> Pin<Box<dyn Future<Output = Error> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn proc_raise<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, _memory: &'life1 mut GuestMemory<'life2>, _sig: Signal, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn sched_yield<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn random_get<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, memory: &'life1 mut GuestMemory<'life2>, buf: GuestPtr<u8>, buf_len: Size, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn sock_recv<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, _memory: &'life1 mut GuestMemory<'life2>, _fd: Fd, _ri_data: IovecArray, _ri_flags: Riflags, ) -> Pin<Box<dyn Future<Output = Result<(Size, Roflags), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn sock_send<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, _memory: &'life1 mut GuestMemory<'life2>, _fd: Fd, _si_data: CiovecArray, _si_flags: Siflags, ) -> Pin<Box<dyn Future<Output = Result<Size, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn sock_shutdown<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, _memory: &'life1 mut GuestMemory<'life2>, _fd: Fd, _how: Sdflags, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

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> 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 u8)

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

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> GetSetFdFlags for T

Source§

fn get_fd_flags(&self) -> Result<FdFlags, Error>
where T: AsFilelike,

Query the “status” flags for the self file descriptor.
Source§

fn new_set_fd_flags(&self, fd_flags: FdFlags) -> Result<SetFdFlags<T>, Error>
where T: AsFilelike,

Create a new SetFdFlags value for use with set_fd_flags. Read more
Source§

fn set_fd_flags(&mut self, set_fd_flags: SetFdFlags<T>) -> Result<(), Error>
where T: AsFilelike,

Set the “status” flags for the self file descriptor. Read more
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> Pointee for T

Source§

type Pointer = u32

Source§

fn debug( pointer: <T as Pointee>::Pointer, f: &mut Formatter<'_>, ) -> Result<(), Error>

Source§

impl<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
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<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