summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/client.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/client.rs b/src/client.rs
index 3beda7d..1623b02 100644
--- a/src/client.rs
+++ b/src/client.rs
@@ -140,9 +140,10 @@ impl Client {
// storing closures very well yet if they need to receive a borrowed
// pointer, and we would need to pass the client object into the callback
// in order to make this work
- pub fn run_loop_with (&mut self, handler: |Message|) {
+ pub fn run_loop_with (mut self, handler: |&mut Client, Message|) {
loop {
- handler(self.read());
+ let m = self.read();
+ handler(&mut self, m);
}
}
}