pub trait CommonPluginMeta {
    // Required method
    fn name(&self) -> &str;
}
Expand description

Provides common meta-data of the plugin or application to the host. This trait is common for all backends that need this info. This trait can be more conveniently implemented by implementing the Meta trait.

Required Methods§

source

fn name(&self) -> &str

The name of the plugin or application.

Implementors§

source§

impl<T> CommonPluginMeta for T
where T: Meta, T::MetaData: General, <<T as Meta>::MetaData as General>::GeneralData: Name,