Struct bluez_async::DeviceInfo [−][src]
Information about a Bluetooth device which was discovered.
Fields
id: DeviceIdAn 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: MacAddressThe MAC address of the device.
address_type: AddressTypeThe 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: boolWhether the device is currently paired with the adapter.
connected: boolWhether 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: boolWhether service discovery has finished for the device.
Trait Implementations
impl Clone for DeviceInfo[src]
fn clone(&self) -> DeviceInfo[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for DeviceInfo[src]
impl Eq for DeviceInfo[src]
impl PartialEq<DeviceInfo> for DeviceInfo[src]
fn eq(&self, other: &DeviceInfo) -> bool[src]
fn ne(&self, other: &DeviceInfo) -> bool[src]
impl StructuralEq for DeviceInfo[src]
impl StructuralPartialEq for DeviceInfo[src]
Auto Trait Implementations
impl RefUnwindSafe for DeviceInfo
impl Send for DeviceInfo
impl Sync for DeviceInfo
impl Unpin for DeviceInfo
impl UnwindSafe for DeviceInfo
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,