Struct bluenrg::event::GattTxPoolAvailable[][src]

pub struct GattTxPoolAvailable {
    pub conn_handle: ConnectionHandle,
    pub available_buffers: usize,
}

This event is raised when the number of available TX buffers is above a threshold TH (TH = 2). The event will be given only if a previous ACI command returned with InsufficientResources.

Fields

Connection handle on which the GATT procedure is running.

Indicates the number of elements available in the attrTxPool List.

Trait Implementations

impl Copy for GattTxPoolAvailable
[src]

impl Clone for GattTxPoolAvailable
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GattTxPoolAvailable
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations