Rename module framed -> protocol, and clarify some type parameters.

This commit is contained in:
Tim Kuehn
2016-12-26 14:50:54 -05:00
parent d242bdbb82
commit e22210bfd8
4 changed files with 33 additions and 31 deletions

View File

@@ -109,9 +109,9 @@ mod macros;
mod client;
/// Provides the base server boilerplate used by service implementations.
mod server;
/// Provides an implementation of `FramedIo` that implements the tarpc protocol.
/// The tarpc protocol is defined by the `FramedIo` implementation.
mod framed;
/// Provides implementations of `ClientProto` and `ServerProto` that implement the tarpc protocol.
/// The tarpc protocol is a length-delimited, bincode-serialized payload.
mod protocol;
/// Provides a few different error types.
mod errors;