pub struct ResolvedRoute<I: BroadcastIpExt, D> {
pub src_addr: IpDeviceAddr<I::Addr>,
pub device: D,
pub local_delivery_device: Option<D>,
pub next_hop: NextHop<I::Addr>,
pub internal_forwarding: InternalForwarding<D>,
}
Expand description
The resolved route to a destination IP address.
Fields§
§src_addr: IpDeviceAddr<I::Addr>
The source address to use when forwarding packets towards the destination.
device: D
The device over which this destination can be reached.
local_delivery_device: Option<D>
Present when device
is loopback with the device that the destination
address is assigned to.
NB: it’s possible that local_delivery_device
is itself loopback.
next_hop: NextHop<I::Addr>
The next hop via which this destination can be reached.
internal_forwarding: InternalForwarding<D>
The route’s internal forwarding semantics.
Trait Implementations§
Source§impl<I: Clone + BroadcastIpExt, D: Clone> Clone for ResolvedRoute<I, D>
impl<I: Clone + BroadcastIpExt, D: Clone> Clone for ResolvedRoute<I, D>
Source§fn clone(&self) -> ResolvedRoute<I, D>
fn clone(&self) -> ResolvedRoute<I, D>
Returns a copy 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 moreSource§impl<I: Debug + BroadcastIpExt, D: Debug> Debug for ResolvedRoute<I, D>
impl<I: Debug + BroadcastIpExt, D: Debug> Debug for ResolvedRoute<I, D>
Source§impl<I: BroadcastIpExt, D, IpType> GenericOverIp<IpType> for ResolvedRoute<I, D>where
IpType: BroadcastIpExt + Ip,
impl<I: BroadcastIpExt, D, IpType> GenericOverIp<IpType> for ResolvedRoute<I, D>where
IpType: BroadcastIpExt + Ip,
Source§type Type = ResolvedRoute<IpType, D>
type Type = ResolvedRoute<IpType, D>
The type of
Self
when its IP-generic parameter is replaced with the
type NewIp
.Source§impl<I: PartialEq + BroadcastIpExt, D: PartialEq> PartialEq for ResolvedRoute<I, D>
impl<I: PartialEq + BroadcastIpExt, D: PartialEq> PartialEq for ResolvedRoute<I, D>
impl<I: Copy + BroadcastIpExt, D: Copy> Copy for ResolvedRoute<I, D>
impl<I: Eq + BroadcastIpExt, D: Eq> Eq for ResolvedRoute<I, D>
impl<I: BroadcastIpExt, D> StructuralPartialEq for ResolvedRoute<I, D>
Auto Trait Implementations§
impl<I, D> Freeze for ResolvedRoute<I, D>
impl<I, D> RefUnwindSafe for ResolvedRoute<I, D>where
D: RefUnwindSafe,
<I as BroadcastIpExt>::BroadcastMarker: RefUnwindSafe,
<I as Ip>::Addr: RefUnwindSafe,
impl<I, D> Send for ResolvedRoute<I, D>where
D: Send,
impl<I, D> Sync for ResolvedRoute<I, D>where
D: Sync,
impl<I, D> Unpin for ResolvedRoute<I, D>
impl<I, D> UnwindSafe for ResolvedRoute<I, D>where
D: UnwindSafe,
<I as BroadcastIpExt>::BroadcastMarker: UnwindSafe,
<I as Ip>::Addr: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<CC, BC, Meta> RecvFrameContext<Meta, BC> for CCwhere
Meta: ReceivableFrameMeta<CC, BC>,
impl<CC, BC, Meta> RecvFrameContext<Meta, BC> for CCwhere
Meta: ReceivableFrameMeta<CC, BC>,
Source§impl<CC, BC, Meta> SendFrameContext<BC, Meta> for CCwhere
Meta: SendableFrameMeta<CC, BC>,
impl<CC, BC, Meta> SendFrameContext<BC, Meta> for CCwhere
Meta: SendableFrameMeta<CC, BC>,
Source§fn send_frame<S>(
&mut self,
bindings_ctx: &mut BC,
metadata: Meta,
frame: S,
) -> Result<(), ErrorAndSerializer<SendFrameErrorReason, S>>where
S: Serializer,
<S as Serializer>::Buffer: BufferMut,
fn send_frame<S>(
&mut self,
bindings_ctx: &mut BC,
metadata: Meta,
frame: S,
) -> Result<(), ErrorAndSerializer<SendFrameErrorReason, S>>where
S: Serializer,
<S as Serializer>::Buffer: BufferMut,
Send a frame. Read more
Source§impl<Id, CC, BC> TimerHandler<BC, Id> for CCwhere
BC: TimerBindingsTypes,
Id: HandleableTimer<CC, BC>,
impl<Id, CC, BC> TimerHandler<BC, Id> for CCwhere
BC: TimerBindingsTypes,
Id: HandleableTimer<CC, BC>,
Source§fn handle_timer(
&mut self,
bindings_ctx: &mut BC,
dispatch: Id,
timer: <BC as TimerBindingsTypes>::UniqueTimerId,
)
fn handle_timer( &mut self, bindings_ctx: &mut BC, dispatch: Id, timer: <BC as TimerBindingsTypes>::UniqueTimerId, )
Handle a timer firing. Read more