Struct bluez_async::CharacteristicInfo[][src]

pub struct CharacteristicInfo {
    pub id: CharacteristicId,
    pub uuid: Uuid,
    pub flags: CharacteristicFlags,
}

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

impl Clone for CharacteristicInfo[src]

impl Debug for CharacteristicInfo[src]

impl Eq for CharacteristicInfo[src]

impl PartialEq<CharacteristicInfo> for CharacteristicInfo[src]

impl StructuralEq for CharacteristicInfo[src]

impl StructuralPartialEq for CharacteristicInfo[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.