netstack_testing_common::realms

Trait NetstackAndDhcpClient

Source
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.

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.

Implementors§