pub trait TitlePlugin {
    fn name(&self) -> &'static str;
fn check(&self, config: &PluginConfig, url: &Url) -> bool;
fn evaluate(&self, rtd: &Rtd, url: &Url) -> Result<String, Error>; }

Required methods

Get the name of the plugin

Check to see if the token is a viable candidate for running the plugin

Run the plugin to get a title

Implementors