pub trait Plugin { // Required methods fn name(&self) -> &str; fn init(&self); }
Returns the name of the plugin.
Called when the plugin is initialized.