[][src]Trait tonic::server::UnaryService

pub trait UnaryService<R> {
    type Response;
    type Future: Future<Output = Result<Response<Self::Response>, Status>>;
    fn call(&mut self, request: Request<R>) -> Self::Future;
}

A specialization of tower_service::Service.

Existing tower_service::Service implementations with the correct form will automatically implement UnaryService.

Associated Types

type Response

Protobuf response message type

type Future: Future<Output = Result<Response<Self::Response>, Status>>

Response future

Loading content...

Required methods

fn call(&mut self, request: Request<R>) -> Self::Future

Call the service

Loading content...

Implementors

impl<T, M1, M2> UnaryService<M1> for T where
    T: Service<Request<M1>, Response = Response<M2>, Error = Status>, 
[src]

type Response = M2

type Future = T::Future

Loading content...