This commit is contained in:
Matthias Beyer 2015-10-19 18:09:39 +02:00
parent 1cea0e48e0
commit 034d71b21d
1 changed files with 3 additions and 9 deletions

View File

@ -6,18 +6,12 @@ pub use module::todo::TodoModule;
pub trait Module {
fn load(&self, &rt : Runtime) -> Option<Self>;
fn callnames() -> [String];
fn name(&self) -> String;
fn new(&rt : Runtime) -> Self;
fn callnames() -> &'static [str];
fn name(&self) -> &'static str;
fn execute(&self, &rt : Runtime) -> Option<Error>;
fn shutdown(&self, &rt : Runtime) -> Option<Error>;
}
pub trait TouchingModule : Module {
fn load_with_path(&self, rt : &Runtime, path : &Path) -> Self;
}