Struct stm32wb_hci::vendor::stm32wb::event::GattTxPoolAvailable
source · pub struct GattTxPoolAvailable {
pub conn_handle: ConnectionHandle,
pub available_buffers: usize,
}Expand description
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§
§conn_handle: ConnectionHandleConnection handle on which the GATT procedure is running.
available_buffers: usizeIndicates the number of elements available in the attrTxPool List.
Trait Implementations§
source§impl Clone for GattTxPoolAvailable
impl Clone for GattTxPoolAvailable
source§fn clone(&self) -> GattTxPoolAvailable
fn clone(&self) -> GattTxPoolAvailable
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for GattTxPoolAvailable
impl Debug for GattTxPoolAvailable
impl Copy for GattTxPoolAvailable
Auto Trait Implementations§
impl RefUnwindSafe for GattTxPoolAvailable
impl Send for GattTxPoolAvailable
impl Sync for GattTxPoolAvailable
impl Unpin for GattTxPoolAvailable
impl UnwindSafe for GattTxPoolAvailable
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more