Struct bluenrg::event::GapPairingComplete[][src]

pub struct GapPairingComplete {
    pub conn_handle: ConnectionHandle,
    pub status: GapPairingStatus,
}

This event is generated when the pairing process has completed successfully or a pairing procedure timeout has occurred or the pairing has failed. This is to notify the application that we have paired with a remote device so that it can take further actions or to notify that a timeout has occurred so that the upper layer can decide to disconnect the link.

Fields

Connection handle on which the pairing procedure completed

Reason the pairing is complete.

Trait Implementations

impl Copy for GapPairingComplete
[src]

impl Clone for GapPairingComplete
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GapPairingComplete
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations