Trait wasmer::LikeNamespace[][src]

pub trait LikeNamespace {
    fn get_namespace_export(&self, name: &str) -> Option<Export>;
fn get_namespace_exports(&self) -> Vec<(String, Export)>
Notable traits for Vec<u8, A>
impl<A> Write for Vec<u8, A> where
    A: Allocator
; }
Expand description

The LikeNamespace trait represents objects that act as a namespace for imports. For example, an Instance or Namespace could be considered namespaces that could provide imports to an instance.

Required methods

Gets an export by name.

Gets all exports in the namespace.

Implementors