Trait netstack3_ip::device::IpDeviceAddressIdContext

source ·
pub trait IpDeviceAddressIdContext<I: IpDeviceIpExt>: DeviceIdContext<AnyDevice> {
    type AddressId: IpAddressId<I::Addr, Weak = Self::WeakAddressId>;
    type WeakAddressId: WeakIpAddressId<I::Addr, Strong = Self::AddressId>;
}
Expand description

Provides the execution context related to address IDs.

Required Associated Types§

source

type AddressId: IpAddressId<I::Addr, Weak = Self::WeakAddressId>

The strong address identifier.

source

type WeakAddressId: WeakIpAddressId<I::Addr, Strong = Self::AddressId>

The weak address identifier.

Implementors§