pg_walstream 0.6.3

PostgreSQL logical replication protocol library - parse and handle PostgreSQL WAL streaming messages
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Pure-Rust PostgreSQL connection using rustls for TLS.
//!
//! Drop-in replacement for the libpq backend. Exposes the same public API
//! so that `stream.rs` works unchanged.

pub(crate) mod auth;
pub(crate) mod connection;
pub(crate) mod conninfo;
pub(crate) mod copy;
pub(crate) mod error;
pub(crate) mod md5;
pub(crate) mod query;
pub(crate) mod result;
pub(crate) mod startup;
pub(crate) mod wire;

pub use connection::NativeConnection;
pub use result::{NativePgResult, NativeResultStatus};