tonic 0.12.2

A gRPC over HTTP/2 implementation focused on high performance, interoperability, and flexibility.
Documentation
1
2
3
4
5
6
7
8
9
10
mod io;
pub(crate) use self::io::ServerIo;

mod recover_error;
pub(crate) use self::recover_error::RecoverError;

#[cfg(feature = "tls")]
mod tls;
#[cfg(feature = "tls")]
pub(crate) use self::tls::TlsAcceptor;