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
//! The event-kind discriminant used as the subscription filter (SPEC §5).
use EnumSetType;
use ;
/// The kind discriminant of a [`WalletEvent`](crate::WalletEvent), used as the subscription FILTER.
///
/// A subscriber passes an `EnumSet<EventKind>`; the engine delivers only matching events (e.g. funds
/// notifications subscribe `FundsReceived | FundsSent`; chain-watch subscribes
/// `CoinStateChanged | NewTip`). An `EnumSet<EventKind>` serializes as a snake_case LIST on the wire
/// (`["funds_received","funds_sent"]`).