#[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, }
Expand description

@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§

source§

impl Clone for ble_gap_conn_desc

source§

fn clone(&self) -> ble_gap_conn_desc

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for ble_gap_conn_desc

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for ble_gap_conn_desc

source§

fn default() -> ble_gap_conn_desc

Returns the “default value” for a type. Read more
source§

impl Copy for ble_gap_conn_desc

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.