Trait netstack3_base::LinkDevice

source ·
pub trait LinkDevice: Device + Debug {
    type Address: LinkUnicastAddress;
}
Expand description

A link device.

LinkDevice is used to identify a particular link device implementation. It is only intended to exist at the type level, never instantiated at runtime.

Required Associated Types§

source

type Address: LinkUnicastAddress

The type of address used to address link devices of this type.

Implementors§