Trait rmp_rpc::ServiceBuilder [] [src]

pub trait ServiceBuilder {
    type Service: Service + 'static;
    fn build(&self, client: Client) -> Self::Service;
}

A Service builder. This trait must be implemented for servers.

Associated Types

Required Methods

Implementors