logo
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Generic server implementation.
//!
//! This module contains the low level components to build a gRPC server. It
//! provides a codec agnostic gRPC server handler.
//!
//! The items in this module are generally designed to be used by some codegen
//! tool that will provide the user some custom way to implement the server that
//! will implement the proper gRPC service. Thusly, they are a bit hard to use
//! by hand.

mod grpc;
mod service;

pub use self::grpc::Grpc;
pub use self::service::{
    ClientStreamingService, ServerStreamingService, StreamingService, UnaryService,
};