openthread/ot/uptime.rs
1// Copyright 2022 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5use crate::prelude_internal::*;
6
7/// Uptime-related methods from the [OpenThread "Instance" Module][1].
8///
9/// [1]: https://openthread.io/reference/group/api-instance
10pub trait Uptime {
11 /// Functional equivalent of [`otsys::otInstanceGetUptime`](crate::otsys::otInstanceGetUptime).
12 fn get_uptime(&self) -> zx::MonotonicDuration;
13}
14
15impl<T: Uptime + Boxable> Uptime for ot::Box<T> {
16 fn get_uptime(&self) -> zx::MonotonicDuration {
17 self.as_ref().get_uptime()
18 }
19}
20
21impl Uptime for Instance {
22 fn get_uptime(&self) -> zx::MonotonicDuration {
23 unsafe {
24 zx::MonotonicDuration::from_millis(
25 otInstanceGetUptime(self.as_ot_ptr()).try_into().unwrap(),
26 )
27 }
28 }
29}