Struct bluetooth_hci::host::ScanParameters[][src]

pub struct ScanParameters {
    pub scan_type: ScanType,
    pub scan_window: ScanWindow,
    pub own_address_type: OwnAddressType,
    pub filter_policy: ScanFilterPolicy,
}

Parameters for the le_set_scan_parameters command.

Fields

The type of scan to perform

Recommendation from the host on how frequently the controller should scan. See the Bluetooth spec, Vol 6, Part B, Section 4.5.3.

Indicates the type of address being used in the scan request packets.

Indicates which advertising packets to accept.

Trait Implementations

impl Clone for ScanParameters
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ScanParameters
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations