pub struct MulticastForwardingPendingPackets<I: IpLayerIpExt, D: WeakDeviceIdentifier, BT: MulticastForwardingBindingsTypes> { /* private fields */ }
Expand description
A table of pending multicast packets that have not yet been forwarded.
Packets are placed in this table when, during forwarding, there is no route
in the [MulticastRouteTable
] via which to forward them. If/when such a
route is installed, the packets stored here can be forwarded accordingly.
Trait Implementations§
Source§impl<I: IpLayerIpExt, D: WeakDeviceIdentifier, BT: MulticastForwardingBindingsTypes> Debug for MulticastForwardingPendingPackets<I, D, BT>
impl<I: IpLayerIpExt, D: WeakDeviceIdentifier, BT: MulticastForwardingBindingsTypes> Debug for MulticastForwardingPendingPackets<I, D, BT>
Source§impl<I: IpLayerIpExt, D: WeakDeviceIdentifier, BT: MulticastForwardingBindingsTypes> Inspectable for MulticastForwardingPendingPackets<I, D, BT>
impl<I: IpLayerIpExt, D: WeakDeviceIdentifier, BT: MulticastForwardingBindingsTypes> Inspectable for MulticastForwardingPendingPackets<I, D, BT>
Source§impl<I: IpLayerIpExt, D: StrongDeviceIdentifier, BT: MulticastForwardingBindingsTypes> OrderedLockAccess<MulticastForwardingPendingPackets<I, <D as StrongDeviceIdentifier>::Weak, BT>> for MulticastForwardingEnabledState<I, D, BT>
impl<I: IpLayerIpExt, D: StrongDeviceIdentifier, BT: MulticastForwardingBindingsTypes> OrderedLockAccess<MulticastForwardingPendingPackets<I, <D as StrongDeviceIdentifier>::Weak, BT>> for MulticastForwardingEnabledState<I, D, BT>
Source§type Lock = Mutex<MulticastForwardingPendingPackets<I, <D as StrongDeviceIdentifier>::Weak, BT>>
type Lock = Mutex<MulticastForwardingPendingPackets<I, <D as StrongDeviceIdentifier>::Weak, BT>>
The lock type that observes ordering. Read more
Source§fn ordered_lock_access(&self) -> OrderedLockRef<'_, Self::Lock>
fn ordered_lock_access(&self) -> OrderedLockRef<'_, Self::Lock>
Returns a borrow to the order-aware lock. Read more
Auto Trait Implementations§
impl<I, D, BT> Freeze for MulticastForwardingPendingPackets<I, D, BT>
impl<I, D, BT> RefUnwindSafe for MulticastForwardingPendingPackets<I, D, BT>where
<BT as TimerBindingsTypes>::Timer: RefUnwindSafe,
<I as MulticastRouteIpExt>::SourceAddress: RefUnwindSafe,
<I as MulticastRouteIpExt>::DestinationAddress: RefUnwindSafe,
<BT as InstantBindingsTypes>::Instant: RefUnwindSafe,
D: RefUnwindSafe,
I: RefUnwindSafe,
impl<I, D, BT> Send for MulticastForwardingPendingPackets<I, D, BT>
impl<I, D, BT> Sync for MulticastForwardingPendingPackets<I, D, BT>
impl<I, D, BT> Unpin for MulticastForwardingPendingPackets<I, D, BT>
impl<I, D, BT> UnwindSafe for MulticastForwardingPendingPackets<I, D, BT>where
<BT as TimerBindingsTypes>::Timer: UnwindSafe,
<I as MulticastRouteIpExt>::SourceAddress: RefUnwindSafe,
<I as MulticastRouteIpExt>::DestinationAddress: RefUnwindSafe,
<BT as InstantBindingsTypes>::Instant: RefUnwindSafe,
D: RefUnwindSafe,
I: RefUnwindSafe,
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<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