Enum bluenrg::event::GapPairingStatus[][src]

pub enum GapPairingStatus {
    Success,
    Timeout,
    Failed,
}

Reasons the GAP Pairing Complete event was generated.

Variants

Pairing with a remote device was successful.

The SMP timeout has elapsed and no further SMP commands will be processed until reconnection.

The pairing failed with the remote device.

Trait Implementations

impl Copy for GapPairingStatus
[src]

impl Clone for GapPairingStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GapPairingStatus
[src]

Formats the value using the given formatter. Read more

impl PartialEq for GapPairingStatus
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl TryFrom<u8> for GapPairingStatus
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

Auto Trait Implementations