summaryrefslogtreecommitdiff
path: root/system/rust/src/gatt.rs
blob: c3e22b7004a07b5d4cb71a01ccb78d5e9114615e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! This module is a simple GATT server that shares the ATT channel with the
//! existing C++ GATT client. See go/private-gatt-in-platform for the design.

pub mod arbiter;
pub mod callbacks;
pub mod channel;
pub mod ffi;
pub mod ids;
pub mod mocks;
mod mtu;
pub mod opcode_types;
pub mod server;

pub use self::callbacks::GattCallbacks;

pub use ffi::GattServerCallbacks;