//! Types and traits for SSL adaptors.
pub use Stream;
use Error;
use *;
/// A trait implemented by SSL adaptors.
/// A trait implemented by types that can negotiate SSL over a Postgres stream.
///
/// If the `openssl` Cargo feature is enabled, this trait will be implemented
/// for `openssl::ssl::SslContext`.