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
/// A group that either exists or not.
///
/// This enum is created by [`GroupMap::group()`](super::GroupMap::group).
/// See its documentation for more.
/// A handle to an existing group.
///
/// This represents a group that is already present in a [`GroupMap`](super::GroupMap),
/// so the group's value can be accessed.
/// A handle to a group that does not yet exist.
///
/// This represents a group that is not yet in a [`GroupMap`](super::GroupMap),
/// but can be inserted later.