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>;
}
👎Deprecated: Since 2.32
Expand description

Trait containing all Plugin methods.

Implementors

Plugin

Required Methods

👎Deprecated: Since 2.32

Obtain the plugin description.

Deprecated since 2.32
Returns

description, as a string.

👎Deprecated: Since 2.32

Get information about MIME types handled by the plugin.

Get information about MIME types handled by the plugin, as a list of MimeInfo.

Deprecated since 2.32
Returns

a GList of MimeInfo.

👎Deprecated: Since 2.32

Obtain the plugin name.

Deprecated since 2.32
Returns

name, as a string.

👎Deprecated: Since 2.32

Obtain the absolute path where the plugin is installed.

Deprecated since 2.32
Returns

path, as a string.

Implementors