openthread/ot/types/route_preference.rs
1// Copyright 2021 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/// Route Preference, as defined in [RFC4191 Section 2.1][1].
8///
9/// [1]: https://datatracker.ietf.org/doc/html/rfc4191#section-2.1
10#[derive(Debug, Copy, Clone, Eq, Ord, PartialOrd, PartialEq, num_derive::FromPrimitive)]
11#[allow(missing_docs)]
12pub enum RoutePreference {
13 Low = OT_ROUTE_PREFERENCE_LOW as isize,
14 Medium = OT_ROUTE_PREFERENCE_MED as isize,
15 High = OT_ROUTE_PREFERENCE_HIGH as isize,
16}