btleplug 0.12.0

A Cross-Platform Rust Bluetooth Low Energy (BLE) GATT library.
Documentation
1
2
3
4
5
6
7
8
9
10
//! De-/Serialization with alternative formats.
//!
//! The various modules in here are intended to be used with `serde`'s [`with` annotation] to de-/serialize as something other than the default format.
//!
//! [`with` annotation]: https://serde.rs/attributes.html#field-attributes

/// Different de-/serialization formats for [`crate::api::BDAddr`].
pub mod bdaddr {
    pub use crate::api::bdaddr::serde::*;
}