[][src]Struct apache_nimble_sys::ble_store_key_cccd

#[repr(C)]pub struct ble_store_key_cccd {
    pub peer_addr: ble_addr_t,
    pub chr_val_handle: u16,
    pub idx: u8,
}

Used as a key for lookups of stored client characteristic configuration descriptors (CCCDs). This struct corresponds to the BLE_STORE_OBJ_TYPE_CCCD store object type.

Fields

peer_addr: ble_addr_t

Key by peer identity address; peer_addr=BLE_ADDR_NONE means don't key off peer.

chr_val_handle: u16

Key by characteristic value handle; chr_val_handle=0 means don't key off characteristic handle.

idx: u8

Number of results to skip; 0 means retrieve the first match.

Trait Implementations

impl Clone for ble_store_key_cccd[src]

impl Copy for ble_store_key_cccd[src]

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