pub struct HalScanReqReport {
pub rssi: u8,
pub peer_addr: PeerAddrType,
}
Expand description
Defines data returned by HAL End Of Radio Activity event
Fields§
§rssi: u8
RSSI (signed integer).
Units: dBm
Values:
- 127: RSSI not available
- -127 .. 20
peer_addr: PeerAddrType
Address of the peer device
Trait Implementations§
Source§impl Clone for HalScanReqReport
impl Clone for HalScanReqReport
Source§fn clone(&self) -> HalScanReqReport
fn clone(&self) -> HalScanReqReport
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 HalScanReqReport
impl Debug for HalScanReqReport
impl Copy for HalScanReqReport
Auto Trait Implementations§
impl Freeze for HalScanReqReport
impl RefUnwindSafe for HalScanReqReport
impl Send for HalScanReqReport
impl Sync for HalScanReqReport
impl Unpin for HalScanReqReport
impl UnwindSafe for HalScanReqReport
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