pub trait DeviceLayerStateTypes: InstantContext {
    type LoopbackDeviceState: DeviceIdDebugTag + Send + Sync;
    type EthernetDeviceState: DeviceIdDebugTag + Send + Sync;
}
Expand description

Provides associated types used in the device layer.

Required Associated Types§

source

type LoopbackDeviceState: DeviceIdDebugTag + Send + Sync

The state associated with loopback devices.

source

type EthernetDeviceState: DeviceIdDebugTag + Send + Sync

The state associated with ethernet devices.

Implementors§