pub trait Plugin {
    // Required methods
    fn name(&self) -> &'static str;
    fn description(&self) -> &'static str;
    fn version(&self) -> &'static str;
    fn author(&self) -> &'static str;
}

Required Methods§

source

fn name(&self) -> &'static str

source

fn description(&self) -> &'static str

source

fn version(&self) -> &'static str

source

fn author(&self) -> &'static str

Implementors§