pub trait TransportLayer: Send + Sync + 'static {
    // Required methods
    fn send<'life0, 'async_trait>(
        &'life0 self,
        request: Request<TlRequest>
    ) -> Pin<Box<dyn Future<Output = Result<Response<TlResponse>, Status>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn stream<'life0, 'async_trait>(
        &'life0 self,
        request: Request<Streaming<Chunk>>
    ) -> Pin<Box<dyn Future<Output = Result<Response<TlResponse>, Status>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}
Expand description

Generated trait containing gRPC methods that should be implemented for use with TransportLayerServer.

Required Methods§

source

fn send<'life0, 'async_trait>( &'life0 self, request: Request<TlRequest> ) -> Pin<Box<dyn Future<Output = Result<Response<TlResponse>, Status>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

source

fn stream<'life0, 'async_trait>( &'life0 self, request: Request<Streaming<Chunk>> ) -> Pin<Box<dyn Future<Output = Result<Response<TlResponse>, Status>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Implementors§