Trait wasmer_asml_fork::StoreObject[][src]

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

Return true if the object Store is the same as the provided Store.

Implementors