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: ConnectionHandle
Connection handle on which the GATT procedure is running.
available_buffers: usize
Indicates 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 duplicate 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 Freeze for GattTxPoolAvailable
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