postgres_protocol/message/
mod.rs

1//! Postgres message protocol support.
2//!
3//! See [Postgres's documentation][docs] for more information on message flow.
4//!
5//! [docs]: https://www.postgresql.org/docs/9.5/static/protocol-flow.html
6
7pub mod backend;
8pub mod frontend;