[][src]Struct nrf_softdevice_s113::ble_gap_sec_keys_t

#[repr(C)]pub struct ble_gap_sec_keys_t {
    pub p_enc_key: *mut ble_gap_enc_key_t,
    pub p_id_key: *mut ble_gap_id_key_t,
    pub p_sign_key: *mut ble_gap_sign_info_t,
    pub p_pk: *mut ble_gap_lesc_p256_pk_t,
}

@brief Security Keys.

Fields

p_enc_key: *mut ble_gap_enc_key_t

< Encryption Key, or NULL.

p_id_key: *mut ble_gap_id_key_t

< Identity Key, or NULL.

p_sign_key: *mut ble_gap_sign_info_t

< Signing Key, or NULL.

p_pk: *mut ble_gap_lesc_p256_pk_t

< LE Secure Connections P-256 Public Key. When in debug mode the application must use the value defined in the Core Bluetooth Specification v4.2 Vol.3, Part H, Section 2.3.5.6.1

Trait Implementations

impl Clone for ble_gap_sec_keys_t[src]

impl Copy for ble_gap_sec_keys_t[src]

impl Debug for ble_gap_sec_keys_t[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.