[][src]Struct llama_wasm::Wasm

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

WASM context

Implementations

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

pub fn new<'b>(
    module: &'a Module,
    exports: impl AsRef<[&'b str]>
) -> Result<Wasm<'a>, Error>
[src]

Create a new WASM context with the given LLVM module and export names

pub fn index(&self, name: impl AsRef<str>) -> Option<u32>[src]

Get index of named export

pub fn exec(&self) -> &Exec[src]

Get executable module

Auto Trait Implementations

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

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

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

impl<'a> Unpin for Wasm<'a>

impl<'a> !UnwindSafe for Wasm<'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, 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.