Mechanism to obtain the current time to facilitate testing.
| 23 | |
| 24 | /// Mechanism to obtain the current time to facilitate testing. |
| 25 | trait Clock { |
| 26 | /// Obtains the current time. |
| 27 | fn now(&self) -> io::Result<OffsetDateTime>; |
| 28 | } |
| 29 | |
| 30 | /// Clock that obtains the current time from the Javascript runtime. |
| 31 | #[derive(Default)] |
nothing calls this directly
no outgoing calls
no test coverage detected