aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugin.rs
diff options
context:
space:
mode:
authorJokler <jokler.contact@gmail.com>2017-12-15 19:29:40 +0100
committerJokler <jokler.contact@gmail.com>2017-12-15 19:29:40 +0100
commit92ea5a1c2e0b7ddaa102d6b602d180e84964c3be (patch)
tree6bfed35a56dcf774d5b840552f921723f4556766 /src/plugin.rs
parentb4c1722bbee9fa822a6063cbb0540c0a7fb2e430 (diff)
downloadfrippy-92ea5a1c2e0b7ddaa102d6b602d180e84964c3be.tar.gz
frippy-92ea5a1c2e0b7ddaa102d6b602d180e84964c3be.zip
Adjust documentation
Diffstat (limited to 'src/plugin.rs')
-rw-r--r--src/plugin.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugin.rs b/src/plugin.rs
index d2338f9..d14c129 100644
--- a/src/plugin.rs
+++ b/src/plugin.rs
@@ -1,3 +1,4 @@
+//! Definitions required for every `Plugin`
use std::fmt;
use irc::client::prelude::*;
@@ -14,7 +15,8 @@ pub trait Plugin: PluginName + Send + Sync + fmt::Debug {
fn command(&self, server: &IrcServer, command: PluginCommand) -> Result<(), IrcError>;
}
-/// `PluginName` is required by `Plugin`.
+/// `PluginName` is required by `Plugin`.
+///
/// To implement it simply add `#[derive(PluginName)]`
/// above the definition of the struct.
///