rbdc 4.9.10

The Rust SQL Toolkit and ORM Library. An async, pure Rust SQL crate featuring compile-time Dynamic SQL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod socket;

pub use socket::Socket;

#[cfg(any(feature = "tls-rustls", feature = "tls-native-tls"))]
mod tls;

#[cfg(any(feature = "tls-rustls", feature = "tls-native-tls"))]
pub use tls::{CertificateInput, MaybeTlsStream};

type PollReadBuf<'a> = crate::rt::ReadBuf<'a>;

type PollReadOut = ();