Skip to main content

IpDeviceAddressIdContext

Trait IpDeviceAddressIdContext 

Source
pub trait IpDeviceAddressIdContext<I: Ip>: 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.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§