Struct bluenrg::event::GattProcedureComplete[][src]

pub struct GattProcedureComplete {
    pub conn_handle: ConnectionHandle,
    pub status: GattProcedureStatus,
}

This event is generated when a GATT client procedure completes either with error or successfully.

Fields

The connection handle for which the GATT procedure has completed.

Indicates whether the procedure completed with error or was successful.

Trait Implementations

impl Copy for GattProcedureComplete
[src]

impl Clone for GattProcedureComplete
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GattProcedureComplete
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations