#[repr(C)]pub struct hci_dev_stats {
pub err_rx: u32,
pub err_tx: u32,
pub cmd_tx: u32,
pub evt_rx: u32,
pub acl_tx: u32,
pub acl_rx: u32,
pub sco_tx: u32,
pub sco_rx: u32,
pub byte_rx: u32,
pub byte_tx: u32,
}Fields§
§err_rx: u32§err_tx: u32§cmd_tx: u32§evt_rx: u32§acl_tx: u32§acl_rx: u32§sco_tx: u32§sco_rx: u32§byte_rx: u32§byte_tx: u32Trait Implementations§
Source§impl Clone for hci_dev_stats
impl Clone for hci_dev_stats
Source§fn clone(&self) -> hci_dev_stats
fn clone(&self) -> hci_dev_stats
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 hci_dev_stats
impl Debug for hci_dev_stats
impl Copy for hci_dev_stats
Auto Trait Implementations§
impl Freeze for hci_dev_stats
impl RefUnwindSafe for hci_dev_stats
impl Send for hci_dev_stats
impl Sync for hci_dev_stats
impl Unpin for hci_dev_stats
impl UnwindSafe for hci_dev_stats
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