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
use String;
use crateTransformError;
/// Why a buffer refused a transform.
///
/// Crate-internal, and deliberately split from [`GetError`]: an insert
/// cannot fail for want of data and a read cannot fail on a frame pin, so
/// one enum for both would force an unreachable arm on every conversion.
/// `Registry` maps each cause onto the matching public
/// [`RegistryError`](crate::errors::RegistryError) variant.
pub
/// Why a buffer could not serve a requested timestamp.
///
/// Crate-internal; `Registry` turns the first two into
/// [`RegistryError::NotFoundAt`](crate::errors::RegistryError::NotFoundAt),
/// which is why the covered range stays in the timestamp type instead of
/// being converted to seconds here.
pub