Trait wasmer::StoreObject
source · [−]pub trait StoreObject {
fn comes_from_same_store(&self, store: &Store) -> bool;
}
Expand description
A trait represinting any object that lives in the Store
.
Required methods
fn comes_from_same_store(&self, store: &Store) -> bool
fn comes_from_same_store(&self, store: &Store) -> bool
Return true if the object Store
is the same as the provided Store
.