[][src]Struct apache_nimble_sys::ble_gap_conn_desc

#[repr(C)]pub struct ble_gap_conn_desc {
    pub sec_state: ble_gap_sec_state,
    pub our_id_addr: ble_addr_t,
    pub peer_id_addr: ble_addr_t,
    pub our_ota_addr: ble_addr_t,
    pub peer_ota_addr: ble_addr_t,
    pub conn_handle: u16,
    pub conn_itvl: u16,
    pub conn_latency: u16,
    pub supervision_timeout: u16,
    pub role: u8,
    pub master_clock_accuracy: u8,
}

@brief Connection descriptor

Fields

sec_state: ble_gap_sec_state

Connection security state

our_id_addr: ble_addr_t

Local identity address

peer_id_addr: ble_addr_t

Peer identity address

our_ota_addr: ble_addr_t

Local over-the-air address

peer_ota_addr: ble_addr_t

Peer over-the-air address

conn_handle: u16

Connection handle

conn_itvl: u16

Connection interval

conn_latency: u16

Connection latency

supervision_timeout: u16

Connection supervision timeout

role: u8

Connection Role Possible values BLE_GAP_ROLE_SLAVE or BLE_GAP_ROLE_MASTER

master_clock_accuracy: u8

Master clock accuracy

Trait Implementations

impl Clone for ble_gap_conn_desc[src]

impl Copy for ble_gap_conn_desc[src]

impl Debug for ble_gap_conn_desc[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.