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
61
62
63
64
65
66
67
68
69
70
71
72
73
//! The registry of settable properties of each kind of node.
use cratePropertyPath;
use crateValueType;
/// The kind of a node, which determines the properties it has.
/// A settable property of a kind of node, as listed by [`properties`].
/// Returns every settable property of a kind of node, in the order in which the fields
/// are declared, each followed by the properties below it.
///
/// The list contains every path that [`Edit::Set`](crate::Edit::Set) accepts for some
/// node of the kind, including every intermediate path: a node kind with manual limits
/// on its x axis lists `x`, `x.label`, `x.label.content`, `x.limits`, `x.limits.min` and
/// so on. A path that descends into a variant is listed once even when several variants
/// share the field (as the x data of rectilinear and curvilinear grids do). Identifiers,
/// the schema version, the provenance, the node lists and the data table are not
/// settable and are not listed.
///
/// The property editor uses this list to offer and document properties, and the list is
/// compared with that of the `main` branch so that renamed or removed paths are reported
/// like other breaking changes.