Struct IpRoutines
pub struct IpRoutines<I, DeviceClass, RuleInfo>where
I: IpExt,{
pub ingress: Hook<I, DeviceClass, RuleInfo>,
pub local_ingress: Hook<I, DeviceClass, RuleInfo>,
pub forwarding: Hook<I, DeviceClass, RuleInfo>,
pub local_egress: Hook<I, DeviceClass, RuleInfo>,
pub egress: Hook<I, DeviceClass, RuleInfo>,
}
Expand description
Routines that perform ordinary IP filtering.
Fields§
§ingress: Hook<I, DeviceClass, RuleInfo>
Occurs for incoming traffic before a routing decision has been made.
local_ingress: Hook<I, DeviceClass, RuleInfo>
Occurs for incoming traffic that is destined for the local host.
forwarding: Hook<I, DeviceClass, RuleInfo>
Occurs for incoming traffic that is destined for another node.
local_egress: Hook<I, DeviceClass, RuleInfo>
Occurs for locally-generated traffic before a final routing decision has been made.
egress: Hook<I, DeviceClass, RuleInfo>
Occurs for all outgoing traffic after a routing decision has been made.
Trait Implementations§
§impl<I, DeviceClass, RuleInfo> Debug for IpRoutines<I, DeviceClass, RuleInfo>
impl<I, DeviceClass, RuleInfo> Debug for IpRoutines<I, DeviceClass, RuleInfo>
§impl<I, DeviceClass, RuleInfo> Default for IpRoutines<I, DeviceClass, RuleInfo>where
I: IpExt,
impl<I, DeviceClass, RuleInfo> Default for IpRoutines<I, DeviceClass, RuleInfo>where
I: IpExt,
§fn default() -> IpRoutines<I, DeviceClass, RuleInfo>
fn default() -> IpRoutines<I, DeviceClass, RuleInfo>
Returns the “default value” for a type. Read more
§impl<I, DeviceClass> Inspectable for IpRoutines<I, DeviceClass, ()>
impl<I, DeviceClass> Inspectable for IpRoutines<I, DeviceClass, ()>
§fn record<Inspector>(&self, inspector: &mut Inspector)where
Inspector: Inspector,
fn record<Inspector>(&self, inspector: &mut Inspector)where
Inspector: Inspector,
Records this value into
inspector
.Auto Trait Implementations§
impl<I, DeviceClass, RuleInfo> Freeze for IpRoutines<I, DeviceClass, RuleInfo>
impl<I, DeviceClass, RuleInfo> RefUnwindSafe for IpRoutines<I, DeviceClass, RuleInfo>where
RuleInfo: RefUnwindSafe,
<I as Ip>::Addr: RefUnwindSafe,
DeviceClass: RefUnwindSafe,
<I as IpProtoExt>::Proto: RefUnwindSafe,
impl<I, DeviceClass, RuleInfo> Send for IpRoutines<I, DeviceClass, RuleInfo>
impl<I, DeviceClass, RuleInfo> Sync for IpRoutines<I, DeviceClass, RuleInfo>
impl<I, DeviceClass, RuleInfo> Unpin for IpRoutines<I, DeviceClass, RuleInfo>
impl<I, DeviceClass, RuleInfo> UnwindSafe for IpRoutines<I, DeviceClass, RuleInfo>where
RuleInfo: UnwindSafe + RefUnwindSafe,
<I as Ip>::Addr: UnwindSafe + RefUnwindSafe,
DeviceClass: UnwindSafe + RefUnwindSafe,
<I as IpProtoExt>::Proto: UnwindSafe + 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<O, BC> BuildableCoreContext<BC> for Owhere
O: Default,
impl<O, BC> BuildableCoreContext<BC> for Owhere
O: Default,
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
Source§impl<L, T> UnlockedAccess<L> for Twhere
L: UnlockedAccessMarkerFor<T>,
impl<L, T> UnlockedAccess<L> for Twhere
L: UnlockedAccessMarkerFor<T>,
Source§type Data = <L as UnlockedAccessMarkerFor<T>>::Data
type Data = <L as UnlockedAccessMarkerFor<T>>::Data
The type of state being accessed.
Source§type Guard<'l> = &'l <L as UnlockedAccessMarkerFor<T>>::Data
where
T: 'l
type Guard<'l> = &'l <L as UnlockedAccessMarkerFor<T>>::Data where T: 'l
A guard providing read access to the data.
Source§fn access(&self) -> <T as UnlockedAccess<L>>::Guard<'_>
fn access(&self) -> <T as UnlockedAccess<L>>::Guard<'_>
How to access the state.