[][src]Struct nrf_softdevice_s122::ble_gatt_conn_cfg_t

#[repr(C)]pub struct ble_gatt_conn_cfg_t {
    pub att_mtu: u16,
}

@brief BLE GATT connection configuration parameters, set with @ref sd_ble_cfg_set.

@retval ::NRF_ERROR_INVALID_PARAM att_mtu is smaller than @ref BLE_GATT_ATT_MTU_DEFAULT.

Fields

att_mtu: u16

< Maximum size of ATT packet the SoftDevice can send or receive. The default and minimum value is @ref BLE_GATT_ATT_MTU_DEFAULT. @mscs @mmsc{@ref BLE_GATTC_MTU_EXCHANGE} @mmsc{@ref BLE_GATTS_MTU_EXCHANGE} @endmscs

Trait Implementations

impl Clone for ble_gatt_conn_cfg_t[src]

impl Copy for ble_gatt_conn_cfg_t[src]

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