#[repr(C)]pub struct nrf_modem_dect_phy_rssi_event {
pub handle: u32,
pub meas_start_time: u64,
pub carrier: u16,
pub meas_len: u16,
pub meas: *mut i8,
}Expand description
RSSI measurement event.
Fields§
§handle: u32Handle of the operation.
meas_start_time: u64Measurement start time, in modem time units.
carrier: u16The absolute channel frequency number on which the measurements were made.
meas_len: u16Number of measurements in @ref meas.
meas: *mut i8RSSI measurements, in dBm.
If a symbol is measured, its measurement is in the interval [-140, -1]. If the measurement is saturated, the measured signal strength is reported as a positive integer. If a symbol is not measured, its value is reported as @ref NRF_MODEM_DECT_PHY_RSSI_NOT_MEASURED.
Trait Implementations§
Source§impl Clone for nrf_modem_dect_phy_rssi_event
impl Clone for nrf_modem_dect_phy_rssi_event
Source§fn clone(&self) -> nrf_modem_dect_phy_rssi_event
fn clone(&self) -> nrf_modem_dect_phy_rssi_event
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 moreimpl Copy for nrf_modem_dect_phy_rssi_event
Auto Trait Implementations§
impl Freeze for nrf_modem_dect_phy_rssi_event
impl RefUnwindSafe for nrf_modem_dect_phy_rssi_event
impl !Send for nrf_modem_dect_phy_rssi_event
impl !Sync for nrf_modem_dect_phy_rssi_event
impl Unpin for nrf_modem_dect_phy_rssi_event
impl UnsafeUnpin for nrf_modem_dect_phy_rssi_event
impl UnwindSafe for nrf_modem_dect_phy_rssi_event
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