fuchsia_bluetooth/lib.rs
1// Copyright 2018 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//! Utilities for Bluetooth development.
6
7pub mod constants;
8
9/// Lists of Bluetooth SIG assigned numbers and conversion functions
10pub mod assigned_numbers;
11/// The DetachableMap type
12pub mod detachable_map;
13/// Bluetooth Error type
14pub mod error;
15pub use error::Error;
16
17/// Tools for writing asynchronous expectations in tests
18#[macro_use]
19pub mod expectation;
20/// Extension traits and functions for interfacing with the Inspect API
21pub mod inspect;
22/// Convenience functions and types for working with the BR/EDR Profile API
23pub mod profile;
24/// Common Bluetooth type extensions
25pub mod types;
26/// Frequently Used Functions
27pub mod util;