1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

//! Utilities for Bluetooth development.

pub mod constants;

/// Lists of Bluetooth SIG assigned numbers and conversion functions
pub mod assigned_numbers;
/// The DetachableMap type
pub mod detachable_map;
/// Bluetooth Error type
pub mod error;
pub use error::Error;

/// Tools for writing asynchronous expectations in tests
#[macro_use]
pub mod expectation;
/// Extension traits and functions for interfacing with the Inspect API
pub mod inspect;
/// Convenience functions and types for working with the BR/EDR Profile API
pub mod profile;
/// Common Bluetooth type extensions
pub mod types;
/// Frequently Used Functions
pub mod util;