#[repr(C)]pub struct nrf_modem_dect_phy_rssi_params {
pub start_time: u64,
pub handle: u32,
pub carrier: u16,
pub duration: u32,
pub reporting_interval: nrf_modem_dect_phy_rssi_interval,
}Expand description
RSSI-1 measurement operation.
Fields§
§start_time: u64Operation start time as modem time.
If zero, the operation will be executed immediately.
This kind of scheduling can only be done when the modem is idle.
handle: u32Handle for the operation.
An application-defined handle for the operation.
carrier: u16The absolute channel frequency number for the RSSI measurement operation.
See 5.4.2 of @ref DECT-SPEC “DECT-2020 NR Part 2”.
duration: u32Duration of measurement in subslots.
The maximum duration is 297600 subslots. The minimum duration is 1 subslot.
reporting_interval: nrf_modem_dect_phy_rssi_intervalRSSI measurements reporting interval, in slots.
Trait Implementations§
Source§impl Clone for nrf_modem_dect_phy_rssi_params
impl Clone for nrf_modem_dect_phy_rssi_params
Source§fn clone(&self) -> nrf_modem_dect_phy_rssi_params
fn clone(&self) -> nrf_modem_dect_phy_rssi_params
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_params
Auto Trait Implementations§
impl Freeze for nrf_modem_dect_phy_rssi_params
impl RefUnwindSafe for nrf_modem_dect_phy_rssi_params
impl Send for nrf_modem_dect_phy_rssi_params
impl Sync for nrf_modem_dect_phy_rssi_params
impl Unpin for nrf_modem_dect_phy_rssi_params
impl UnsafeUnpin for nrf_modem_dect_phy_rssi_params
impl UnwindSafe for nrf_modem_dect_phy_rssi_params
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