Struct bluenrg::gap::AuthenticationRequirements[][src]

pub struct AuthenticationRequirements {
    pub mitm_protection_required: bool,
    pub out_of_band_auth: OutOfBandAuthentication,
    pub encryption_key_size_range: (u8, u8),
    pub fixed_pin: Pin,
    pub bonding_required: bool,
}

Parameters for the GAP Set Authentication Requirement command.

Fields

Is MITM (man-in-the-middle) protection required?

Out-of-band authentication data.

Minimum and maximum size of the encryption key.

Pin to use during the pairing process.

Is bonding required?

Auto Trait Implementations