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
use crate::;
/// Convenience extension for converting a state into a union's generated enum.
///
/// This is implemented for every generated union marker. It is most useful
/// when the marker value is already in scope and you want the concrete enum
/// immediately, without spelling the associated [`In`](crate::In) conversion
/// and then calling `discriminate()` yourself:
///
/// ```ignore
/// use magicstatemachines::EnumExt;
/// use test_def::{Online, OnlineEnum};
///
/// let online = Online.into_enum(state);
///
/// match online {
/// OnlineEnum::Connected(connected) => {
/// // `connected` has the concrete `Connected` state marker.
/// }
/// OnlineEnum::Authenticated(authenticated) => {
/// // `authenticated` has the concrete `Authenticated` state marker.
/// }
/// }
/// ```