Struct ketos::module::NullModuleLoader [] [src]

pub struct NullModuleLoader;

Loads no modules.

Trait Implementations

impl ModuleLoader for NullModuleLoader
[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