Struct ketos::module::BuiltinModuleLoader [] [src]

pub struct BuiltinModuleLoader;

Loads builtin modules.

Trait Implementations

impl ModuleLoader for BuiltinModuleLoader
[src]

fn load_module(&self, name: Name, ctx: Context) -> Result<ModuleError>

Loads the named module, supplying a new execution context. Read more

fn chain<T: ModuleLoader>(self, second: T) -> ChainModuleLoader<Self, T> where Self: Sized

Creates a ChainModuleLoader using this loader and another. Read more