Struct bluez_async::CharacteristicInfo [−][src]
pub struct CharacteristicInfo {
pub id: CharacteristicId,
pub uuid: Uuid,
pub flags: CharacteristicFlags,
}
Expand description
Information about a GATT characteristic on a Bluetooth device.
Fields
id: CharacteristicId
An opaque identifier for the characteristic on the device, including a reference to which adapter it was discovered on.
uuid: Uuid
The 128-bit UUID of the characteristic.
flags: CharacteristicFlags
The set of flags (a.k.a. properties) of the characteristic, defining how the characteristic can be used.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CharacteristicInfo
impl Send for CharacteristicInfo
impl Sync for CharacteristicInfo
impl Unpin for CharacteristicInfo
impl UnwindSafe for CharacteristicInfo
Blanket Implementations
Mutably borrows from an owned value. Read more