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§
Sourcetype DhcpClient: DhcpClient
type DhcpClient: DhcpClient
The DHCP client to be used.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.