pub trait ClientProviderExt {
    // Required methods
    fn new_client_ext(
        &self,
        interface_id: NonZeroU64,
        new_client_params: NewClientParams,
    ) -> ClientProxy;
    fn new_client_end_ext(
        &self,
        interface_id: NonZeroU64,
        new_client_params: NewClientParams,
    ) -> ClientEnd<ClientMarker>;
}
Expand description

Extension trait on fidl_fuchsia_net_dhcp::ClientProviderProxy.

Required Methods§

source

fn new_client_ext( &self, interface_id: NonZeroU64, new_client_params: NewClientParams, ) -> ClientProxy

Construct a new DHCP client.

source

fn new_client_end_ext( &self, interface_id: NonZeroU64, new_client_params: NewClientParams, ) -> ClientEnd<ClientMarker>

Construct a new DHCP client, returning a ClientEnd instead of a Proxy.

Implementations on Foreign Types§

source§

impl ClientProviderExt for ClientProviderProxy

source§

fn new_client_ext( &self, interface_id: NonZeroU64, new_client_params: NewClientParams, ) -> ClientProxy

source§

fn new_client_end_ext( &self, interface_id: NonZeroU64, new_client_params: NewClientParams, ) -> ClientEnd<ClientMarker>

Implementors§