pub struct RNodeSubinterface {
pub name: String,
pub vport: Option<u8>,
pub radio: RNodeRadio,
pub flow_control: Option<bool>,
pub outgoing: Option<bool>,
pub airtime_limit_short: Option<f64>,
pub airtime_limit_long: Option<f64>,
pub extra: BTreeMap<String, ReferenceValue>,
}Fields§
§name: String§vport: Option<u8>§radio: RNodeRadio§flow_control: Option<bool>§outgoing: Option<bool>§airtime_limit_short: Option<f64>§airtime_limit_long: Option<f64>§extra: BTreeMap<String, ReferenceValue>Trait Implementations§
Source§impl Clone for RNodeSubinterface
impl Clone for RNodeSubinterface
Source§fn clone(&self) -> RNodeSubinterface
fn clone(&self) -> RNodeSubinterface
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 moreSource§impl Debug for RNodeSubinterface
impl Debug for RNodeSubinterface
Source§impl PartialEq for RNodeSubinterface
impl PartialEq for RNodeSubinterface
impl StructuralPartialEq for RNodeSubinterface
Auto Trait Implementations§
impl Freeze for RNodeSubinterface
impl RefUnwindSafe for RNodeSubinterface
impl Send for RNodeSubinterface
impl Sync for RNodeSubinterface
impl Unpin for RNodeSubinterface
impl UnsafeUnpin for RNodeSubinterface
impl UnwindSafe for RNodeSubinterface
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