pub struct LinkStats {
pub ts_ms: u64,
pub rssi_dbm: Option<i16>,
pub snr_db: Option<f32>,
pub airtime_ms: u32,
pub rx_ok: u32,
pub rx_drop: u32,
pub tx_ok: u32,
pub tx_drop: u32,
}Fields§
§ts_ms: u64§rssi_dbm: Option<i16>§snr_db: Option<f32>§airtime_ms: u32§rx_ok: u32§rx_drop: u32§tx_ok: u32§tx_drop: u32Trait Implementations§
impl Copy for LinkStats
impl StructuralPartialEq for LinkStats
Auto Trait Implementations§
impl Freeze for LinkStats
impl RefUnwindSafe for LinkStats
impl Send for LinkStats
impl Sync for LinkStats
impl Unpin for LinkStats
impl UnsafeUnpin for LinkStats
impl UnwindSafe for LinkStats
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