aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugin.rs
diff options
context:
space:
mode:
authorJokler <jokler.contact@gmail.com>2018-03-03 18:02:36 +0100
committerJokler <jokler.contact@gmail.com>2018-03-03 18:02:36 +0100
commit7304240fb50458c64d63eb784967d9dbde75eae6 (patch)
treee51bae69715524c9ded49d26459549380df3b555 /src/plugin.rs
parent0b4131e8cf91ed10f24d3faed341034d518aea53 (diff)
downloadfrippy-7304240fb50458c64d63eb784967d9dbde75eae6.tar.gz
frippy-7304240fb50458c64d63eb784967d9dbde75eae6.zip
Make tells caase insensitive and only check JOINs
Diffstat (limited to 'src/plugin.rs')
-rw-r--r--src/plugin.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugin.rs b/src/plugin.rs
index e57f072..bc428d5 100644
--- a/src/plugin.rs
+++ b/src/plugin.rs
@@ -45,7 +45,7 @@ pub trait Plugin: PluginName + Send + Sync + fmt::Debug {
/// #[derive(PluginName)]
/// struct Foo;
/// ```
-pub trait PluginName: Send + Sync + fmt::Debug {
+pub trait PluginName {
/// Returns the name of the `Plugin`.
fn name(&self) -> &str;
}