openthread/ot/types/link_metrics.rs
1// Copyright 2024 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/// Represents the result (value) for a Link Metrics query.
8#[derive(Default, Debug, Clone, Copy)]
9#[repr(transparent)]
10pub struct LinkMetricsValues(pub otLinkMetricsValues);
11
12impl_ot_castable!(LinkMetricsValues, otLinkMetricsValues);
13
14impl LinkMetricsValues {
15 /// Get the link margin value
16 pub fn link_margin(&self) -> u8 {
17 self.0.mLinkMarginValue
18 }
19
20 /// Get the Rssi value
21 pub fn rssi(&self) -> i8 {
22 self.0.mRssiValue
23 }
24}