pub trait ServiceInstance {
type Error: Error + Send + Sync + 'static;
type Transport: Transport;
// Required method
fn connect(&mut self, member: &str) -> Result<Self::Transport, Self::Error>;
}
Expand description
An instance of a FIDL service.