[][src]Struct openthread_sys::otPlatBleGapConnParams

#[repr(C)]pub struct otPlatBleGapConnParams {
    pub mConnMinInterval: u16,
    pub mConnMaxInterval: u16,
    pub mConnSlaveLatency: u16,
    pub mConnSupervisionTimeout: u16,
}

This structure represents BLE connection parameters.

Fields

mConnMinInterval: u16

Preferred minimum connection interval in OT_BLE_TIMESLOT_UNIT units. Shall be in OT_BLE_CONN_INTERVAL_MIN and OT_BLE_CONN_INTERVAL_MAX range.

mConnMaxInterval: u16

Preferred maximum connection interval in OT_BLE_TIMESLOT_UNIT units. Shall be in OT_BLE_CONN_INTERVAL_MIN and OT_BLE_CONN_INTERVAL_MAX range.

mConnSlaveLatency: u16

Slave Latency in number of connection events. Shall not exceed OT_BLE_CONN_SLAVE_LATENCY_MAX value.

mConnSupervisionTimeout: u16

Defines connection timeout parameter in OT_BLE_CONN_SUPERVISOR_UNIT units. Shall be in OT_BLE_CONN_SUPERVISOR_TIMEOUT_MIN and OT_BLE_CONN_SUPERVISOR_TIMEOUT_MIN range.

Trait Implementations

impl Clone for otPlatBleGapConnParams[src]

impl Copy for otPlatBleGapConnParams[src]

impl Debug for otPlatBleGapConnParams[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.