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§
Sourcefn new_client_ext(
&self,
interface_id: NonZeroU64,
new_client_params: NewClientParams,
) -> ClientProxy
fn new_client_ext( &self, interface_id: NonZeroU64, new_client_params: NewClientParams, ) -> ClientProxy
Construct a new DHCP client.
Sourcefn new_client_end_ext(
&self,
interface_id: NonZeroU64,
new_client_params: NewClientParams,
) -> ClientEnd<ClientMarker>
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.