| 56 | } |
| 57 | |
| 58 | #[cfg_attr(test, mockall::automock)] |
| 59 | pub trait Clock<T: Type + Copy> { |
| 60 | /// Read the current clock time. |
| 61 | fn get_time(&self) -> Time<T>; |
| 62 | } |
| 63 | |
| 64 | /// Extension trait for Clock that provides offset and RTT measurement functionality |
nothing calls this directly
no outgoing calls
no test coverage detected