pub struct RadioConfigInput {
pub frequency_hz: u64,
pub bandwidth_hz: u32,
pub tx_power_dbm: i16,
pub spreading_factor: u8,
pub coding_rate: u8,
pub airtime_limit_short_centi_percent: Option<u16>,
pub airtime_limit_long_centi_percent: Option<u16>,
}Fields§
§frequency_hz: u64§bandwidth_hz: u32§tx_power_dbm: i16§spreading_factor: u8§coding_rate: u8§airtime_limit_short_centi_percent: Option<u16>§airtime_limit_long_centi_percent: Option<u16>Trait Implementations§
Source§impl Clone for RadioConfigInput
impl Clone for RadioConfigInput
Source§fn clone(&self) -> RadioConfigInput
fn clone(&self) -> RadioConfigInput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RadioConfigInput
Source§impl Debug for RadioConfigInput
impl Debug for RadioConfigInput
impl Eq for RadioConfigInput
Source§impl PartialEq for RadioConfigInput
impl PartialEq for RadioConfigInput
impl StructuralPartialEq for RadioConfigInput
Auto Trait Implementations§
impl Freeze for RadioConfigInput
impl RefUnwindSafe for RadioConfigInput
impl Send for RadioConfigInput
impl Sync for RadioConfigInput
impl Unpin for RadioConfigInput
impl UnsafeUnpin for RadioConfigInput
impl UnwindSafe for RadioConfigInput
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