pub trait NetstackAndDhcpClient: Copy + Clone {
    type Netstack: Netstack;
    type DhcpClient: DhcpClient;
}
Expand description

A combination of Netstack and DhcpClient guaranteed to be compatible with each other.

Required Associated Types§

source

type Netstack: Netstack

The netstack to be used.

source

type DhcpClient: DhcpClient

The DHCP client to be used.

Object Safety§

This trait is not object safe.

Implementors§