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§
Sourcetype Address: LinkUnicastAddress
type Address: LinkUnicastAddress
The type of address used to address link devices of this type.