Skip to main content

WasiClocksNamed

Struct WasiClocksNamed 

Source
pub struct WasiClocksNamed<T>(/* private fields */);
Expand description

A helper struct which implements HasData for the wasi:clocks APIs when used in combination with named imports.

This structure is similar in purpose to WasiClocks and is used when using the named_imports module for wasi:clocks. This structure serves as the D type parameter for add_to_linker functions.

§Meaning of the T parameter

Here the T must be something that implements WasiClocksNamedView. The corresponding Data for this type is WasiCtxNamedView which internally will contain &mut T.

Effectively you’re going to implement WasiClocksNamedView for something in your embedding, and that’s the T you’ll fill in here.

§Examples

use wasmtime::component::{Linker, Component, ResourceTable};
use wasmtime::{Engine, Result};
use wasmtime_wasi::{NamedId, WasiCtxNamedView};
use wasmtime_wasi::clocks::*;
use wasmtime_wasi::p2::bindings::named_imports;
use std::collections::HashMap;

struct MyStoreState {
    table: ResourceTable,
    states: HashMap<NamedId, WasiClocksCtx>,
}

fn main() -> Result<()> {
    let engine = Engine::default();
    let mut linker = Linker::new(&engine);
    let component = Component::new(&engine, "(component)")?;
    let mut name_map = HashMap::new();

    named_imports::wasi::clocks::wall_clock::add_to_linker::<MyStoreState, WasiClocksNamed<MyStoreState>>(
        &mut linker,
        &component,
        |name| {
            let len = name_map.len();
            Ok(NamedId(*name_map.entry(name.to_string()).or_insert(len)))
        },
        |state| WasiCtxNamedView(state),
    )?;
    Ok(())
}

impl WasiClocksNamedView for MyStoreState {
    fn clocks(&mut self, id: NamedId) -> WasiClocksCtxView<'_> {
        let ctx = self.states.get_mut(&id).expect("state for id");
        WasiClocksCtxView {
            table: &mut self.table,
            ctx,
        }
    }
}

Trait Implementations§

Source§

impl<T> HasData for WasiClocksNamed<T>

Source§

type Data<'a> = WasiCtxNamedView<'a, T>

The data associated with this trait implementation, chiefly used as a generic associated type to allow plumbing the 'a lifetime into the definition here. Read more
Source§

impl<T, U> HostWithStore<U> for WasiClocksNamed<T>

Available on crate feature p3 only.
Source§

async fn wait_until( store: &Accessor<U, Self>, id: NamedId, when: Mark, ) -> Result<()>

Wait until the specified mark has occurred.
Source§

async fn wait_for( _store: &Accessor<U, Self>, _id: NamedId, duration: Duration, ) -> Result<()>

Wait for the specified duration to elapse.

Auto Trait Implementations§

§

impl<T> Freeze for WasiClocksNamed<T>
where PhantomData<fn() -> T>: Freeze,

§

impl<T> RefUnwindSafe for WasiClocksNamed<T>
where PhantomData<fn() -> T>: RefUnwindSafe,

§

impl<T> Send for WasiClocksNamed<T>
where PhantomData<fn() -> T>: Send,

§

impl<T> Sync for WasiClocksNamed<T>
where PhantomData<fn() -> T>: Sync,

§

impl<T> Unpin for WasiClocksNamed<T>
where PhantomData<fn() -> T>: Unpin,

§

impl<T> UnsafeUnpin for WasiClocksNamed<T>
where PhantomData<fn() -> T>: UnsafeUnpin,

§

impl<T> UnwindSafe for WasiClocksNamed<T>
where PhantomData<fn() -> T>: UnwindSafe,

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
§

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

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<H, T> HostDescriptorWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostDescriptorWithStore<T> for H
where H: HasData + Send + ?Sized,

Source§

impl<H, T> HostDescriptorWithStore<T> for H
where H: HasData + Send + ?Sized,

Source§

impl<H, T> HostDirectoryEntryStreamWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostDirectoryEntryStreamWithStore<T> for H
where H: HasData + Send + ?Sized,

Source§

impl<H, T> HostDirectoryEntryStreamWithStore<T> for H
where H: HasData + Send + ?Sized,

§

impl<H, T> HostErrorWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostIncomingDatagramStreamWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostIncomingDatagramStreamWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostIncomingDatagramStreamWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostInputStreamWithStore<T> for H
where H: HasData + ?Sized,

§

impl<H, T> HostInputStreamWithStore<T> for H
where H: HasData + Send + ?Sized,

Source§

impl<H, T> HostNetworkWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostNetworkWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostOutgoingDatagramStreamWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostOutgoingDatagramStreamWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostOutgoingDatagramStreamWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostOutputStreamWithStore<T> for H
where H: HasData + ?Sized,

§

impl<H, T> HostOutputStreamWithStore<T> for H
where H: HasData + Send + ?Sized,

Source§

impl<H, T> HostPollableWithStore<T> for H
where H: HasData + ?Sized,

§

impl<H, T> HostPollableWithStore<T> for H
where H: HasData + Send + ?Sized,

Source§

impl<H, T> HostResolveAddressStreamWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostResolveAddressStreamWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostResolveAddressStreamWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostTcpSocketWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostTcpSocketWithStore<T> for H
where H: HasData + Send + ?Sized,

Source§

impl<H, T> HostTcpSocketWithStore<T> for H
where H: HasData + Send + ?Sized,

Source§

impl<H, T> HostTerminalInputWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostTerminalInputWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostTerminalInputWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostTerminalInputWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostTerminalOutputWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostTerminalOutputWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostTerminalOutputWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostTerminalOutputWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostUdpSocketWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostUdpSocketWithStore<T> for H
where H: HasData + Send + ?Sized,

Source§

impl<H, T> HostUdpSocketWithStore<T> for H
where H: HasData + Send + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + Send + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + Send + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

§

impl<H, T> HostWithStore<T> for H
where H: HasData + HostErrorWithStore<T> + ?Sized,

§

impl<H, T> HostWithStore<T> for H

§

impl<H, T> HostWithStore<T> for H

§

impl<T> Instrument for T

§

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

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

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
§

impl<T> MaybeSendSync for T

§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

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

Initializes a with the given initializer. Read more
§

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

Dereferences the given pointer. Read more
§

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

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

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

impl<T> Pointee for T

§

type Pointer = u32

§

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

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
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.
§

impl<T> WithSubscriber for T

§

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
§

fn with_current_subscriber(self) -> WithDispatch<Self>

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