openthread_sys/
lib.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
5//! # Raw OpenThread API Bindings #
6//!
7//! This crate provides the raw OpenThread API bindings to Rust.
8//! The entire API surface is unsafe and, in general, should not
9//! be used directly. Instead, you should use a safe wrapper crate
10//! such as [`::openthread_rust`].
11
12mod bindings;
13pub use bindings::*;
14
15pub mod spinel;