Struct bluez_async::DeviceInfo[][src]

pub struct DeviceInfo {
    pub id: DeviceId,
    pub mac_address: MacAddress,
    pub address_type: AddressType,
    pub name: Option<String>,
    pub appearance: Option<u16>,
    pub services: Vec<Uuid>,
    pub paired: bool,
    pub connected: bool,
    pub rssi: Option<i16>,
    pub tx_power: Option<i16>,
    pub manufacturer_data: HashMap<u16, Vec<u8>>,
    pub service_data: HashMap<Uuid, Vec<u8>>,
    pub services_resolved: bool,
}

Information about a Bluetooth device which was discovered.

Fields

id: DeviceId

An opaque identifier for the device, including a reference to which adapter it was discovered on. This can be used to connect to it.

mac_address: MacAddress

The MAC address of the device.

address_type: AddressType

The type of MAC address the device uses.

name: Option<String>

The human-readable name of the device, if available.

appearance: Option<u16>

The appearance of the device, as defined by GAP.

services: Vec<Uuid>

The GATT service UUIDs (if any) from the device’s advertisement or service discovery.

Note that service discovery only happens after a connection has been made to the device, but BlueZ may cache the list of services after it is disconnected.

paired: bool

Whether the device is currently paired with the adapter.

connected: bool

Whether the device is currently connected to the adapter.

rssi: Option<i16>

The Received Signal Strength Indicator of the device advertisement or inquiry.

tx_power: Option<i16>

The transmission power level advertised by the device.

manufacturer_data: HashMap<u16, Vec<u8>>

Manufacturer-specific advertisement data, if any. The keys are ‘manufacturer IDs’.

service_data: HashMap<Uuid, Vec<u8>>

The GATT service data from the device’s advertisement, if any. This is a map from the service UUID to its data.

services_resolved: bool

Whether service discovery has finished for the device.

Trait Implementations

impl Clone for DeviceInfo[src]

impl Debug for DeviceInfo[src]

impl Eq for DeviceInfo[src]

impl PartialEq<DeviceInfo> for DeviceInfo[src]

impl StructuralEq for DeviceInfo[src]

impl StructuralPartialEq for DeviceInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.