Struct stm32wb_hci::event::NumberOfCompletedPacketsPair
source · pub struct NumberOfCompletedPacketsPair {
pub conn_handle: ConnectionHandle,
pub num_completed_packets: usize,
}Expand description
The NumberOfCompletedPackets event includes a series of connection handle-number of
completed packets pairs.
Fields§
§conn_handle: ConnectionHandleConnection handle
num_completed_packets: usizeThe number of HCI Data Packets that have been completed (transmitted or flushed) for
conn_handle since the previous time the event
was returned.
Trait Implementations§
source§impl Clone for NumberOfCompletedPacketsPair
impl Clone for NumberOfCompletedPacketsPair
source§fn clone(&self) -> NumberOfCompletedPacketsPair
fn clone(&self) -> NumberOfCompletedPacketsPair
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 NumberOfCompletedPacketsPair
impl Debug for NumberOfCompletedPacketsPair
impl Copy for NumberOfCompletedPacketsPair
Auto Trait Implementations§
impl RefUnwindSafe for NumberOfCompletedPacketsPair
impl Send for NumberOfCompletedPacketsPair
impl Sync for NumberOfCompletedPacketsPair
impl Unpin for NumberOfCompletedPacketsPair
impl UnwindSafe for NumberOfCompletedPacketsPair
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