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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
use mpsc;
use oneshot;
/// A small convenience enum that abstracts over several Tokio channel
/// transmitters (TX):
/// - `OneShot` — a single-use `oneshot::Sender<T>` wrapped in an `Option` so it
/// can be consumed exactly once.
/// - `Unbounded` — an `mpsc::UnboundedSender<T>` (does not require awaiting
/// when sending).
/// - `Bounded` — a bounded `mpsc::Sender<T>` (send may need to wait for
/// capacity).
///
/// This type lets you hold “some kind of TX” and interact with it uniformly
/// via [`ChanTx::send`]. It is particularly useful in APIs that may return or
/// accept different TX flavors depending on configuration, while keeping a
/// single code path for sending values.