使用旧的Rust 2015
0.4.0
| 2018年11月7日 |
0.3.0
| 2018年2月19日 |
0.2.4
|
2018年2月15日
|
0.2.3
|
2017年11月27日
|
0.1.3
| 2016年3月11日 |
#1373 in 硬件支持
每月1,779次下载
用于 4 crate
基于blueZ/dbus的Rust蓝牙库
当前状态:实验性 必需的bluez版本:5.44
示例
本示例展示了如何获取第一个可用的蓝牙设备。
let adapter: BluetoothAdapter = BluetoothAdapter::init().unwrap();
let device: BluetoothDevice = adapter.get_first_device().unwrap();
println!("{:?}", device);