protosocket-prost 1.0.3

Message-oriented nonblocking tcp stream - protocol buffers bindings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Conveniences for using protocol buffers via `prost` with `protosocket`.
//!
//! See the example-proto directory for a complete example of how to use this crate.

#![deny(missing_docs)]

mod decoder;
mod error;
mod serializer;

pub use decoder::ProstDecoder;
pub use error::{Error, Result};
pub use serializer::ProstSerializer;