1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
use mpsc;
use ;
/// A reference to a "fast callback" subscription that can be used to remove
/// the said callback.
///
/// Note that if this value is dropped before calling [`Callback::remove_callback()`],
/// there will be no way to remove it anymore.
///
/// Also note that since v0.2, removing a callback will never cause the client to
/// unsubscribe from the topic. Instead,
/// [`Client::unsubscribe()`](super::Client::unsubscribe()) should be used to
/// unsubscribe from a topic.