pub struct PluginInstance<Ctx: 'static> { /* private fields */ }Expand description
An instantiated plugin with its store and instance, ready for dispatch.
Created by calling Plugin::instantiate or
Plugin::link. The plugin holds its wasmtime Store
and can execute function calls.
Trait Implementations§
Auto Trait Implementations§
impl<Ctx> Freeze for PluginInstance<Ctx>
impl<Ctx> !RefUnwindSafe for PluginInstance<Ctx>
impl<Ctx> Send for PluginInstance<Ctx>where
Ctx: Send,
impl<Ctx> !Sync for PluginInstance<Ctx>
impl<Ctx> Unpin for PluginInstance<Ctx>
impl<Ctx> UnsafeUnpin for PluginInstance<Ctx>
impl<Ctx> !UnwindSafe for PluginInstance<Ctx>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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