Enum bluez_async::BluetoothError[][src]

pub enum BluetoothError {
    NoBluetoothAdapters,
    DbusError(Error),
    XmlParseError(Error),
    UUIDNotFound {
        uuid: Uuid,
    },
    UUIDParseError(Error),
    FlagParseError(String),
    AddressTypeParseError(String),
    RequiredPropertyMissing(&'static str),
    ServiceDiscoveryTimedOut,
}

An error carrying out a Bluetooth operation.

Variants

NoBluetoothAdapters

No Bluetooth adapters were found on the system.

DbusError(Error)

There was an error talking to the BlueZ daemon over D-Bus.

XmlParseError(Error)

Error parsing XML for introspection.

UUIDNotFound

No service or characteristic was found for some UUID.

Fields of UUIDNotFound

uuid: Uuid
UUIDParseError(Error)

Error parsing a UUID from a string.

FlagParseError(String)

Error parsing a characteristic flag from a string.

AddressTypeParseError(String)

Error parsing an AddressType from a string.

RequiredPropertyMissing(&'static str)

A required property of some device or other object was not found.

ServiceDiscoveryTimedOut

Service discovery didn’t happen within the time limit.

Trait Implementations

impl Debug for BluetoothError[src]

impl Display for BluetoothError[src]

impl Error for BluetoothError[src]

impl From<Error> for BluetoothError[src]

impl From<Error> for BluetoothError[src]

impl From<Error> for BluetoothError[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> ToString for T where
    T: Display + ?Sized
[src]

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.