Struct polkavm::Linker

source ·
pub struct Linker<T> { /* private fields */ }

Implementations§

source§

impl<T> Linker<T>

source

pub fn new(engine: &Engine) -> Self

source

pub fn func_fallback( &mut self, func: impl Fn(Caller<'_, T>, &[u8]) -> Result<(), Trap> + Send + Sync + 'static )

Defines a fallback external call handler, in case no other registered functions match.

source

pub fn func_new( &mut self, symbol: impl AsRef<[u8]>, func: impl Fn(Caller<'_, T>) -> Result<(), Trap> + Send + Sync + 'static ) -> Result<&mut Self, Error>
where T: 'static,

Defines a new dynamically typed handler for external calls with a given symbol.

source

pub fn func_wrap<Params, Args>( &mut self, symbol: impl AsRef<[u8]>, func: impl IntoCallFn<T, Params, Args> ) -> Result<&mut Self, Error>

Defines a new statically typed handler for external calls with a given symbol.

source

pub fn instantiate_pre(&self, module: &Module) -> Result<InstancePre<T>, Error>

Pre-instantiates a new module, linking it with the external functions previously defined on this object.

Auto Trait Implementations§

§

impl<T> !RefUnwindSafe for Linker<T>

§

impl<T> Send for Linker<T>
where T: Send,

§

impl<T> Sync for Linker<T>
where T: Sync,

§

impl<T> Unpin for Linker<T>
where T: Unpin,

§

impl<T> !UnwindSafe for Linker<T>

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> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

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, U> TryFrom<U> for T
where U: Into<T>,

§

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>,

§

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.