pub struct RouteEntry {
pub hops: u8,
pub learned_at: InstantMillis,
pub last_relayed_at: InstantMillis,
pub responsiveness: RouteResponsiveness,
pub receiving_interface: InterfaceId,
pub next_hop: NextHop,
}Fields§
§hops: u8§learned_at: InstantMillis§last_relayed_at: InstantMillis§responsiveness: RouteResponsiveness§receiving_interface: InterfaceId§next_hop: NextHopTrait Implementations§
Source§impl Clone for RouteEntry
impl Clone for RouteEntry
Source§fn clone(&self) -> RouteEntry
fn clone(&self) -> RouteEntry
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 RouteEntry
Source§impl Debug for RouteEntry
impl Debug for RouteEntry
impl Eq for RouteEntry
Source§impl PartialEq for RouteEntry
impl PartialEq for RouteEntry
impl StructuralPartialEq for RouteEntry
Auto Trait Implementations§
impl Freeze for RouteEntry
impl RefUnwindSafe for RouteEntry
impl Send for RouteEntry
impl Sync for RouteEntry
impl Unpin for RouteEntry
impl UnsafeUnpin for RouteEntry
impl UnwindSafe for RouteEntry
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