pub trait TitlePlugin {
// Required methods
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§
Sourcefn check(&self, config: &PluginConfig, url: &Url) -> bool
fn check(&self, config: &PluginConfig, url: &Url) -> bool
Check to see if the token is a viable candidate for running the plugin