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
//! Utility types needed for coap-message
/// Reference that is annotated with a type ID corresponding to a 'static version of the type
///
/// How the ID corresponds to `T` is up to the type `T`. Any type may use it internally without
/// documented stability guarantees (being itself responsible for upholding whatever it relies on).
/// Code outside of the crate defining `T` should not construct it or rely on its properties; if
/// really needed, that crates should provide own wrapper methods that define their precise
/// unsafety criteria.
;
/// Exclusive reference that is annotated with a type ID corresponding to a 'static version of the
/// type
///
/// How the ID corresponds to `T` is up to the type `T`. Any type may use it internally without
/// documented stability guarantees (being itself responsible for upholding whatever it relies on).
/// Code outside of the crate defining `T` should not construct it or rely on its properties; if
/// really needed, that crates should provide own wrapper methods that define their precise
/// unsafety criteria.
;