sqlx-core-oldapi 0.6.55

Core of SQLx, the rust SQL toolkit. Not intended to be used directly.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod socket;
mod tls;

#[allow(unused_imports)]
pub use socket::Socket;
#[allow(unused_imports)]
pub use tls::CertificateInput;
#[allow(unused_imports)]
pub use tls::MaybeTlsStream;
#[allow(unused_imports)]
pub use tls::TlsConfig;

type PollReadBuf<'a> = sqlx_rt::ReadBuf<'a>;

type PollReadOut = ();