pub trait Module {
    fn init(self, engine: &mut Engine);
}
Expand description

A collection of engine logics and configurations.

A Module configure the Engine. When the Engine registers a module, the module’s Module::init function is call.

Required Methods

Configures the Engine to which this module is added.

Implementors