pub struct RouteTable {
pub ext_address: Option<u64>,
pub rloc16: Option<u16>,
pub router_id: Option<u8>,
pub next_hop: Option<u8>,
pub path_cost: Option<u8>,
pub lqi_in: Option<u8>,
pub lqi_out: Option<u8>,
pub age: Option<u8>,
pub allocated: Option<bool>,
pub link_established: Option<bool>,
}Fields§
§ext_address: Option<u64>§rloc16: Option<u16>§router_id: Option<u8>§next_hop: Option<u8>§path_cost: Option<u8>§lqi_in: Option<u8>§lqi_out: Option<u8>§age: Option<u8>§allocated: Option<bool>§link_established: Option<bool>Trait Implementations§
Source§impl Debug for RouteTable
impl Debug for RouteTable
Auto Trait Implementations§
impl Freeze for RouteTable
impl RefUnwindSafe for RouteTable
impl Send for RouteTable
impl Sync for RouteTable
impl Unpin for RouteTable
impl UnwindSafe for RouteTable
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