Trait gveditor_core_api::extensions::base::Extension[][src]

pub trait Extension {
    fn init(&mut self);
fn notify(&mut self, message: ExtensionMessages);
fn get_info(&self) -> ExtensionInfo; }
Expand description

Extensions structure

Required methods

Init method of the extension This will be called when the extension is loaded

Forward messages to the extension

Retrieve info from the exension

Implementors