[][src]Struct lucet_runtime::InstanceBuilder

pub struct InstanceBuilder<'a> { /* fields omitted */ }

A builder for instances; created by Region::new_instance_builder().

Methods

impl<'a> InstanceBuilder<'a>[src]

pub fn with_embed_ctx<T>(self, ctx: T) -> InstanceBuilder<'a> where
    T: Any
[src]

Add an embedder context to the built instance.

Up to one context value of any particular type may exist in the instance. If a context value of the same type already exists, it is replaced by the new value.

pub fn build(self) -> Result<InstanceHandle, Error>[src]

Build the instance.

Safety

This function runs the guest code for the WebAssembly start section, and running any guest code is potentially unsafe; see Instance::run().

Auto Trait Implementations

impl<'a> !RefUnwindSafe for InstanceBuilder<'a>

impl<'a> !Send for InstanceBuilder<'a>

impl<'a> !Sync for InstanceBuilder<'a>

impl<'a> Unpin for InstanceBuilder<'a>

impl<'a> !UnwindSafe for InstanceBuilder<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.