diff options
| author | Jokler <jokler.contact@gmail.com> | 2018-03-03 18:02:36 +0100 |
|---|---|---|
| committer | Jokler <jokler.contact@gmail.com> | 2018-03-03 18:02:36 +0100 |
| commit | 7304240fb50458c64d63eb784967d9dbde75eae6 (patch) | |
| tree | e51bae69715524c9ded49d26459549380df3b555 /src/plugin.rs | |
| parent | 0b4131e8cf91ed10f24d3faed341034d518aea53 (diff) | |
| download | frippy-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.rs | 2 |
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; } |
