Ctx

Type Alias Ctx 

Source
pub type Ctx<BT> = CtxPair<StackState<BT>, BT>;
Expand description

Context available during the execution of the netstack.

Aliased Type§

pub struct Ctx<BT> {
    pub core_ctx: StackState<BT>,
    pub bindings_ctx: BT,
}

Fields§

§core_ctx: StackState<BT>

The core context.

§bindings_ctx: BT

The bindings context.