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
//! Reviewed KNX datapoint-type catalogue as const data.
//!
//! The catalogue is the single internal authority for source-derived
//! declarative facts about datapoint types: identifiers, official names,
//! transmitted widths, field decompositions, ranges, resolutions, code
//! tables, named bit layouts, special values, validity associations,
//! cross-field relations, context requirements and group-transport
//! eligibility. Consumers read these facts here instead of interpreting
//! the specification independently.
//!
//! The data under [`generated`] is produced by the `knx-data-gen` tool from
//! reviewed structured input. It is committed, deterministic, and never
//! edited by hand; the reviewed input is the authority over the generated
//! output.
//!
//! The schema types here are open data records - public fields, no
//! constructors - because they state declarations rather than enforce
//! invariants; the validated primitives with sealed fields and checked
//! constructors live in the crates that own behavior.
pub use ;
pub use SubtypeRow;
/// Looks up the catalogue row for `id`.
///
/// Returns `None` when the identifier is not catalogued. The catalogue states
/// what the reviewed data records about a datapoint type, not what this build
/// implements; distinguishing an uncatalogued identifier from a
/// catalogued-but-unimplemented one belongs to the registration layer.