#[repr(C)]pub struct nrf_modem_dect_phy_band {
pub band_group_index: u8,
pub band_number: u8,
pub rx_gain: i8,
pub power_class: u8,
pub min_carrier: u16,
pub max_carrier: u16,
}Expand description
Band information.
Fields§
§band_group_index: u8Band group index.
Value 0 refers to RF frequencies operating near 2GHz and value 1 to RF frequencies near 1 GHz.
band_number: u8Band number.
rx_gain: i8Receiver sensitivity capability in dB.
power_class: u8Power class.
min_carrier: u16Minimum carrier number.
max_carrier: u16Maximum carrier number.
Trait Implementations§
Source§impl Clone for nrf_modem_dect_phy_band
impl Clone for nrf_modem_dect_phy_band
Source§fn clone(&self) -> nrf_modem_dect_phy_band
fn clone(&self) -> nrf_modem_dect_phy_band
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 nrf_modem_dect_phy_band
impl Debug for nrf_modem_dect_phy_band
impl Copy for nrf_modem_dect_phy_band
Auto Trait Implementations§
impl Freeze for nrf_modem_dect_phy_band
impl RefUnwindSafe for nrf_modem_dect_phy_band
impl Send for nrf_modem_dect_phy_band
impl Sync for nrf_modem_dect_phy_band
impl Unpin for nrf_modem_dect_phy_band
impl UnsafeUnpin for nrf_modem_dect_phy_band
impl UnwindSafe for nrf_modem_dect_phy_band
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