summary refs log tree commit diff stats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorSoniEx2 <endermoneymod@gmail.com>2018-11-03 20:20:53 -0300
committerSoniEx2 <endermoneymod@gmail.com>2018-11-03 20:20:53 -0300
commitc9bc69de71199683d0f4809f1e45b6b2f8ac89ad (patch)
tree910985c0715f16e9f1ebb7e868213ae0f77ed1e7 /src/lib.rs
parent04a76896ffde1464cea23b14989b80aa9802a213 (diff)
Add must_use
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 0f74cf8..93ba6d6 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -314,6 +314,7 @@ pub struct Eat {
 }
 
 /// A command hook handle.
+#[must_use = "Hooks must be stored somewhere and are automatically unhooked on Drop"]
 pub struct CommandHookHandle {
     ph: *mut internals::Ph,
     hh: *const internals::HexchatHook,
@@ -322,6 +323,7 @@ pub struct CommandHookHandle {
 }
 
 /// A server hook handle.
+#[must_use = "Hooks must be stored somewhere and are automatically unhooked on Drop"]
 pub struct ServerHookHandle {
     ph: *mut internals::Ph,
     hh: *const internals::HexchatHook,
@@ -330,6 +332,7 @@ pub struct ServerHookHandle {
 }
 
 /// A print hook handle.
+#[must_use = "Hooks must be stored somewhere and are automatically unhooked on Drop"]
 pub struct PrintHookHandle {
     ph: *mut internals::Ph,
     hh: *const internals::HexchatHook,
@@ -338,6 +341,7 @@ pub struct PrintHookHandle {
 }
 
 /// A timer hook handle.
+#[must_use = "Hooks must be stored somewhere and are automatically unhooked on Drop"]
 pub struct TimerHookHandle {
     ph: *mut internals::Ph,
     hh: *const internals::HexchatHook,