pub trait PluginExt: 'static {
    fn description(&self) -> Option<GString>;
    fn mime_info_list(&self) -> Vec<MimeInfo>;
    fn name(&self) -> Option<GString>;
    fn path(&self) -> Option<GString>;
}

Required Methods

Implementors