pub struct RNodeSubConfig {
pub name: String,
pub frequency: u32,
pub bandwidth: u32,
pub txpower: i8,
pub spreading_factor: u8,
pub coding_rate: u8,
pub flow_control: bool,
pub st_alock: Option<f32>,
pub lt_alock: Option<f32>,
}Expand description
Configuration for one RNode subinterface (radio).
Fields§
§name: String§frequency: u32§bandwidth: u32§txpower: i8§spreading_factor: u8§coding_rate: u8§flow_control: bool§st_alock: Option<f32>§lt_alock: Option<f32>Trait Implementations§
Source§impl Clone for RNodeSubConfig
impl Clone for RNodeSubConfig
Source§fn clone(&self) -> RNodeSubConfig
fn clone(&self) -> RNodeSubConfig
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 moreAuto Trait Implementations§
impl Freeze for RNodeSubConfig
impl RefUnwindSafe for RNodeSubConfig
impl Send for RNodeSubConfig
impl Sync for RNodeSubConfig
impl Unpin for RNodeSubConfig
impl UnwindSafe for RNodeSubConfig
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