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
//! Units and scaling helpers.
use ;
/// Supported units for typed metadata.
///
/// ```
/// use daedalus_data::units::Unit;
/// let unit = Unit::Seconds;
/// assert_eq!(unit, Unit::Seconds);
/// ```
/// Unit + scale pair (e.g. milliseconds as `Seconds` with `0.001` scale).
///
/// ```
/// use daedalus_data::units::{Unit, UnitValue};
/// let value = UnitValue::new(Unit::Seconds, 0.5);
/// assert_eq!(value.scale, 0.5);
/// ```