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: ConnectionHandle
Connection handle
num_completed_packets: usize
The 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 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 NumberOfCompletedPacketsPair
impl Debug for NumberOfCompletedPacketsPair
impl Copy for NumberOfCompletedPacketsPair
Auto Trait Implementations§
impl Freeze for NumberOfCompletedPacketsPair
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