blurz 0.4.0

Bluetooth lib for Rust using blueZ/dbus
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Bluetooth lib for Rust using blueZ/dbus
=======================================

Current state: Experimental
Required bluez version: 5.44

Examples
========
This example show how to get the first available bluetooth device.
``` rust
let adapter: BluetoothAdapter = BluetoothAdapter::init().unwrap();
let device: BluetoothDevice = adapter.get_first_device().unwrap();
println!("{:?}", device);
```