Struct bluenrg::event::GapDeviceFound[][src]

pub struct GapDeviceFound {
    pub event: GapDeviceFoundEvent,
    pub bdaddr: BdAddrType,
    pub rssi: Option<i8>,
    // some fields omitted
}

The event is given by the GAP layer to the upper layers when a device is discovered during scanning as a consequence of one of the GAP procedures started by the upper layers.

Fields

Type of event

Address of the peer device found during scanning

Received signal strength indicator (range: -127 - 20).

Methods

impl GapDeviceFound
[src]

Returns the valid scan response data.

Trait Implementations

impl Copy for GapDeviceFound
[src]

impl Clone for GapDeviceFound
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GapDeviceFound
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations