pub trait ServiceConnector {
    // Required method
    fn connect(service: &str, server_end: Channel) -> Status;
}
Expand description

A trait that provides functionality to connect a channel to a FIDL service.

Required Methods§

source

fn connect(service: &str, server_end: Channel) -> Status

Connect server_end to the protocol available at service.

Implementors§