aboutsummaryrefslogtreecommitdiff
path: root/src/netapp.rs
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2020-12-14 11:41:25 +0100
committerAlex Auvolat <alex@adnab.me>2020-12-14 11:41:25 +0100
commit9e38b82edcba5f60eb0ed95b5551947c0c03ba3c (patch)
tree247bfbd7aa82a56a6af67b072184a822eb9b9424 /src/netapp.rs
parent5d07711900b84dc8095fba5eea3b1ab4925145db (diff)
downloadnetapp-9e38b82edcba5f60eb0ed95b5551947c0c03ba3c.tar.gz
netapp-9e38b82edcba5f60eb0ed95b5551947c0c03ba3c.zip
Update documentation
Diffstat (limited to 'src/netapp.rs')
-rw-r--r--src/netapp.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/netapp.rs b/src/netapp.rs
index 9733fb7..eed0f59 100644
--- a/src/netapp.rs
+++ b/src/netapp.rs
@@ -158,6 +158,8 @@ impl NetApp {
/// Add a handler for a certain message type. Note that only one handler
/// can be specified for each message type.
+ /// The handler is an asynchronous function, i.e. a function that returns
+ /// a future.
pub fn add_msg_handler<M, F, R>(&self, handler: F)
where
M: Message + 'static,