[][src]Struct wasmer_engine_dummy::DummyEngine

pub struct DummyEngine { /* fields omitted */ }

A WebAssembly Dummy Engine.

Implementations

impl DummyEngine[src]

pub fn new() -> Self[src]

pub fn features(&self) -> &Features[src]

Trait Implementations

impl Clone for DummyEngine[src]

impl Engine for DummyEngine[src]

fn target(&self) -> &Target[src]

Get the tunables

fn register_signature(&self, func_type: &FunctionType) -> VMSharedSignatureIndex[src]

Register a signature

fn lookup_signature(&self, sig: VMSharedSignatureIndex) -> Option<FunctionType>[src]

Lookup a signature

fn function_call_trampoline(
    &self,
    _sig: VMSharedSignatureIndex
) -> Option<VMTrampoline>
[src]

Retrieves a trampoline given a signature

fn validate(&self, binary: &[u8]) -> Result<(), CompileError>[src]

Validates a WebAssembly module

fn compile(
    &self,
    binary: &[u8],
    tunables: &dyn Tunables
) -> Result<Arc<dyn Artifact>, CompileError>
[src]

Compile a WebAssembly binary

unsafe fn deserialize(
    &self,
    bytes: &[u8]
) -> Result<Arc<dyn Artifact>, DeserializeError>
[src]

Deserializes a WebAssembly module (binary content of a Shared Object file)

Auto Trait Implementations

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.