pub enum ClientProviderRequest {
NewClient {
params: NewClientParams,
request: ServerEnd<ClientMarker>,
control_handle: ClientProviderControlHandle,
},
}
Expand description
Provides a method to create new clients.
Variants§
NewClient
Fields
§
params: NewClientParams
§
request: ServerEnd<ClientMarker>
§
control_handle: ClientProviderControlHandle
Provides a DHCPv6 client.
- request
params
the parameters to create the client with. - request
request
grants control over the client. Closed with an epitaph if the client cannot be created.
Implementations§
source§impl ClientProviderRequest
impl ClientProviderRequest
pub fn into_new_client( self ) -> Option<(NewClientParams, ServerEnd<ClientMarker>, ClientProviderControlHandle)>
sourcepub fn method_name(&self) -> &'static str
pub fn method_name(&self) -> &'static str
Name of the method defined in FIDL