Enum bluenrg::event::GattProcedureStatus[][src]

pub enum GattProcedureStatus {
    Success,
    Failed,
}

Allowed status codes for the GATT Procedure Complete event.

Variants

BLE Status Success

BLE Status Failed

Trait Implementations

impl Copy for GattProcedureStatus
[src]

impl Clone for GattProcedureStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GattProcedureStatus
[src]

Formats the value using the given formatter. Read more

impl PartialEq for GattProcedureStatus
[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 GattProcedureStatus
[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